1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 16:39:30 +02:00

Bug 2394 - Mac: length field in Selection toolbar is corrupted - blank dotted rectangle.

This commit is contained in:
Leland Lucius 2020-04-20 09:05:21 -05:00
parent fc37fbda22
commit 80f95d407a

View File

@ -677,8 +677,10 @@ void SelectionBar::ShowHideControls(int mode)
NumericTextCtrl ** Ctrls[4] = { &mStartTime, &mCenterTime, &mLengthTime, &mEndTime};
for(int i=0;i<4;i++){
if( *Ctrls[i])
if( *Ctrls[i]){
(*Ctrls[i])->Show( (mask & (1<<i))!=0 );
(*Ctrls[i])->Refresh();
}
}
}