bug fix: isHidden is better than isVisible since we need the correct state even if the window is covered by other windows
This commit is contained in:
parent
31341e7de9
commit
30c2bddd03
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ public:
|
||||||
void SetChannelInfos ( const CChannelInfo& cChanInfo );
|
void SetChannelInfos ( const CChannelInfo& cChanInfo );
|
||||||
void Show() { pFrame->show(); }
|
void Show() { pFrame->show(); }
|
||||||
void Hide() { pFrame->hide(); }
|
void Hide() { pFrame->hide(); }
|
||||||
bool IsVisible() { return plblLabel->isVisible(); }
|
bool IsVisible() { return !pFrame->isHidden(); }
|
||||||
bool IsSolo() { return pcbSolo->isChecked(); }
|
bool IsSolo() { return pcbSolo->isChecked(); }
|
||||||
bool IsMute() { return pcbMute->isChecked(); }
|
bool IsMute() { return pcbMute->isChecked(); }
|
||||||
void SetGUIDesign ( const EGUIDesign eNewDesign );
|
void SetGUIDesign ( const EGUIDesign eNewDesign );
|
||||||
|
|
Loading…
Reference in a new issue