Fixed / tweaks as result of testing after merge with RW's stuff

* fixed wrong channel for received prviate messages
* allow to minimize window
* fixed sort coumn indicator for simulated aircraft
This commit is contained in:
Klaus Basan
2015-03-20 03:14:54 +01:00
parent 48dc360237
commit 59007187fe
6 changed files with 31 additions and 9 deletions

View File

@@ -63,11 +63,15 @@ void SwiftGuiStd::ps_onMenuClicked()
{
CStyleSheetUtility::instance().read();
}
else if (sender == this->ui->menu_FileFont)
else if (sender == this->ui->menu_WindowFont)
{
this->ps_setMainPageToInfoArea();
this->ui->comp_MainInfoArea->selectSettingsTab(BlackGui::Components::CSettingsComponent::SettingTabGui);
}
else if (sender == this->ui->menu_WindowMinimize)
{
this->showMinimized();
}
else if (sender == this->ui->menu_FileClose)
{
CLogMessage(this).info("Closing");
@@ -98,3 +102,4 @@ void SwiftGuiStd::initDynamicMenus()
Q_ASSERT(this->ui->comp_MainInfoArea);
this->ui->menu_InfoAreas->addActions(this->ui->comp_MainInfoArea->getInfoAreaSelectActions(this->ui->menu_InfoAreas));
}