Fix console window (now not a QDialog)
It now opens and coloses as expected, depending on user preferences and the status of the various processes involved. Console window geometry and state are remembered between runs.
This commit is contained in:
parent
7f5eb5d61a
commit
4124faf474
9 changed files with 152 additions and 133 deletions
|
@ -321,8 +321,6 @@ void MultiMC::initGlobalSettings()
|
|||
// The cat
|
||||
m_settings->registerSetting(new Setting("TheCat", false));
|
||||
|
||||
// Shall the main window hide on instance launch
|
||||
m_settings->registerSetting(new Setting("NoHide", false));
|
||||
|
||||
m_settings->registerSetting(new Setting("InstSortMode", "Name"));
|
||||
|
||||
|
@ -338,6 +336,9 @@ void MultiMC::initGlobalSettings()
|
|||
// Window state and geometry
|
||||
m_settings->registerSetting(new Setting("MainWindowState", ""));
|
||||
m_settings->registerSetting(new Setting("MainWindowGeometry", ""));
|
||||
|
||||
m_settings->registerSetting(new Setting("ConsoleWindowState", ""));
|
||||
m_settings->registerSetting(new Setting("ConsoleWindowGeometry", ""));
|
||||
}
|
||||
|
||||
void MultiMC::initHttpMetaCache()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue