mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-02 17:09:26 +02:00
Bug 2394 - Mac: length field in Selection toolbar is corrupted - blank dotted rectangle.
This commit is contained in:
parent
fc37fbda22
commit
80f95d407a
@ -677,8 +677,10 @@ void SelectionBar::ShowHideControls(int mode)
|
|||||||
|
|
||||||
NumericTextCtrl ** Ctrls[4] = { &mStartTime, &mCenterTime, &mLengthTime, &mEndTime};
|
NumericTextCtrl ** Ctrls[4] = { &mStartTime, &mCenterTime, &mLengthTime, &mEndTime};
|
||||||
for(int i=0;i<4;i++){
|
for(int i=0;i<4;i++){
|
||||||
if( *Ctrls[i])
|
if( *Ctrls[i]){
|
||||||
(*Ctrls[i])->Show( (mask & (1<<i))!=0 );
|
(*Ctrls[i])->Show( (mask & (1<<i))!=0 );
|
||||||
|
(*Ctrls[i])->Refresh();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user