Compare commits

...

2 Commits

Author SHA1 Message Date
Rosalie b3ccd5e368 Update LogDialog.cpp 2026-01-07 02:52:47 +01:00
Rosalie 271fd5a18e Update MainWindow.cpp 2026-01-07 02:52:47 +01:00
2 changed files with 4 additions and 2 deletions
@@ -21,6 +21,7 @@ LogDialog::LogDialog(QWidget *parent) : QDialog(parent)
this->setWindowIcon(QIcon(":Resource/RMG.png"));
this->setWindowFlags(this->windowFlags() | Qt::WindowMinimizeButtonHint);
#if 0
try
{ // for some reason on Windows 10 for some users,
// ->setFont() will crash in DwriteCreateFactory,
@@ -34,6 +35,7 @@ LogDialog::LogDialog(QWidget *parent) : QDialog(parent)
catch (...)
{
}
#endif
}
LogDialog::~LogDialog(void)
+2 -2
View File
@@ -283,7 +283,7 @@ void MainWindow::configureUI(QApplication* app, bool showUI)
{
this->setCentralWidget(this->ui_Widgets);
QString geometry = QString::fromStdString(CoreSettingsGetStringValue(SettingsID::RomBrowser_Geometry));
/*QString geometry = QString::fromStdString(CoreSettingsGetStringValue(SettingsID::RomBrowser_Geometry));
bool maximized = CoreSettingsGetBoolValue(SettingsID::RomBrowser_Maximized);
if (maximized)
{
@@ -292,7 +292,7 @@ void MainWindow::configureUI(QApplication* app, bool showUI)
else if (!geometry.isEmpty())
{
this->restoreGeometry(QByteArray::fromBase64(geometry.toLocal8Bit()));
}
}*/
this->ui_ShowUI = showUI;