1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 09:01:12 +01:00

Allow tabbing to the button on the time ruler...

... by making the ruler and the upper tool dock part of one panel
This commit is contained in:
Paul Licameli
2016-06-25 02:42:22 -04:00
parent 57788c8d7a
commit ae14cb0dbc
7 changed files with 35 additions and 14 deletions

View File

@@ -258,7 +258,8 @@ class AUDACITY_DLL_API AudacityProject final : public wxFrame,
bool GetDirty() { return mDirty; }
void SetProjectTitle();
TrackPanel * GetTrackPanel(){return mTrackPanel;}
wxPanel *GetTopPanel() { return mTopPanel; }
TrackPanel * GetTrackPanel() {return mTrackPanel;}
bool GetIsEmpty();
@@ -594,6 +595,7 @@ public:
wxStatusBar *mStatusBar;
AdornedRulerPanel *mRuler{};
wxPanel *mTopPanel{};
TrackPanel *mTrackPanel{};
TrackFactory *mTrackFactory{};
wxPanel * mMainPanel;