mirror of https://github.com/mgba-emu/mgba.git
Qt: Remove What's This icon from dialogs
This commit is contained in:
parent
48cc9a3ea7
commit
c076878495
1
CHANGES
1
CHANGES
|
@ -72,6 +72,7 @@ Misc:
|
||||||
- Feature: Switch from ImageMagick to FFmpeg for GIF generation
|
- Feature: Switch from ImageMagick to FFmpeg for GIF generation
|
||||||
- OpenGL: Only resize textures when needed
|
- OpenGL: Only resize textures when needed
|
||||||
- GBA BIOS: Fix clobbered registers in CpuSet (fixes mgba.io/i/1531)
|
- GBA BIOS: Fix clobbered registers in CpuSet (fixes mgba.io/i/1531)
|
||||||
|
- Qt: Remove What's This icon from dialogs
|
||||||
|
|
||||||
0.7.3: (2019-09-15)
|
0.7.3: (2019-09-15)
|
||||||
Emulation fixes:
|
Emulation fixes:
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
ArchiveInspector::ArchiveInspector(const QString& filename, QWidget* parent)
|
ArchiveInspector::ArchiveInspector(const QString& filename, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
connect(m_ui.archiveView, &LibraryController::doneLoading, [this]() {
|
connect(m_ui.archiveView, &LibraryController::doneLoading, [this]() {
|
||||||
|
|
|
@ -1024,7 +1024,7 @@ const QList<IOViewer::RegisterDescription>& IOViewer::registerDescriptions() {
|
||||||
}
|
}
|
||||||
|
|
||||||
IOViewer::IOViewer(std::shared_ptr<CoreController> controller, QWidget* parent)
|
IOViewer::IOViewer(std::shared_ptr<CoreController> controller, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
PlacementControl::PlacementControl(std::shared_ptr<CoreController> controller, QWidget* parent)
|
PlacementControl::PlacementControl(std::shared_ptr<CoreController> controller, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
using namespace QGBA;
|
using namespace QGBA;
|
||||||
|
|
||||||
PrinterView::PrinterView(std::shared_ptr<CoreController> controller, QWidget* parent)
|
PrinterView::PrinterView(std::shared_ptr<CoreController> controller, QWidget* parent)
|
||||||
: QDialog(parent)
|
: QDialog(parent, Qt::WindowTitleHint | Qt::WindowSystemMenuHint | Qt::WindowCloseButtonHint)
|
||||||
, m_controller(controller)
|
, m_controller(controller)
|
||||||
{
|
{
|
||||||
m_ui.setupUi(this);
|
m_ui.setupUi(this);
|
||||||
|
|
Loading…
Reference in New Issue