[AFV] Ref T730, changed/added settings for AFV and allow still to use old swift notifications

This commit is contained in:
Klaus Basan
2019-10-17 18:13:57 +02:00
parent 3a469d4654
commit 7fdc2c3db3
5 changed files with 26 additions and 14 deletions

View File

@@ -35,7 +35,7 @@ namespace BlackGui
QSize CCockpitInfoAreaComponent::getPreferredSizeWhenFloating(int areaIndex) const
{
Q_UNUSED(areaIndex);
Q_UNUSED(areaIndex)
return QSize(600, 400);
}
@@ -44,12 +44,9 @@ namespace BlackGui
InfoArea area = static_cast<InfoArea>(areaIndex);
switch (area)
{
case InfoAreaAudio:
return CIcons::appAudio16();
case InfoAreaVoiceRooms:
return CIcons::appVoiceRooms16();
default:
return CIcons::empty();
case InfoAreaAudio: return CIcons::appAudio16();
case InfoAreaVoiceRooms: return CIcons::appVoiceRooms16();
default: return CIcons::empty();
}
}