summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-03-30 00:14:25 +0200
committerRobin Gareus <robin@gareus.org>2020-03-30 00:14:25 +0200
commite43cc9c7bbe8ca05f6a130e5a71bc6f7e19a2d03 (patch)
tree7f9b9ca064a28cf7a86bad8418eb483a79489717 /gtk2_ardour/ardour_ui_ed.cc
parent96b2b359639df7b35063ab720d9dd5c68714b75c (diff)
Statusbar: add session-path display
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index ecfb5d82ac..58f3e4162e 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -730,6 +730,7 @@ ARDOUR_UI::build_menu_bar ()
sample_rate_label.set_name ("SampleRate");
sample_rate_label.set_use_markup ();
format_label.set_name ("Format");
+ session_path_label.set_name ("Path");
format_label.set_use_markup ();
#ifdef __APPLE__
@@ -747,12 +748,14 @@ ARDOUR_UI::build_menu_bar ()
hbox->pack_end (timecode_format_label, false, false, 6);
hbox->pack_end (format_label, false, false, 6);
hbox->pack_end (peak_thread_work_label, false, false, 6);
+ hbox->pack_end (session_path_label, false, false, 6);
menu_hbox.pack_end (*ev, true, true, 2);
menu_bar_base.set_name ("MainMenuBar");
menu_bar_base.add (menu_hbox);
+ _status_bar_visibility.add (&session_path_label ,X_("Path"), _("Path to Session"), false);
_status_bar_visibility.add (&peak_thread_work_label,X_("Peakfile"), _("Active Peak-file Work"), false);
_status_bar_visibility.add (&format_label, X_("Format"), _("File Format"), false);
_status_bar_visibility.add (&timecode_format_label, X_("TCFormat"), _("Timecode Format"), false);