1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Bug 1701 - Mac: Text descriptors in Selection Toolbar become invisible after Open command

Problem was that on mac enable/disable clears the colour back to black.
The easiest workaround was to create a new class auStaticText that does all that we
need for wxStaticText.
This commit is contained in:
James Crook
2017-08-12 21:49:38 +01:00
parent f2ee945da0
commit dc05b94fd1
8 changed files with 71 additions and 27 deletions

View File

@@ -70,6 +70,7 @@ class NoteTrack;
class PlayableTrack;
class WaveTrack;
class auStaticText;
class MixerTrackCluster final : public wxPanelWrapper
{
@@ -140,7 +141,7 @@ private:
AudacityProject* mProject;
// controls
wxStaticText* mStaticText_TrackName;
auStaticText* mStaticText_TrackName;
wxBitmapButton* mBitmapButton_MusicalInstrument;
AButton* mToggleButton_Mute;
AButton* mToggleButton_Solo;