summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2018-02-16 09:35:44 -0600
committerBen Loftis <ben@harrisonconsoles.com>2018-02-17 09:24:15 -0600
commitfa22689b704ab2dd06c98dcbc1d33b6f4418a4c0 (patch)
tree1b9334d70a2429e6e88bae754c54c011d96cb3da /gtk2_ardour/ardour_ui_ed.cc
parentcfed95fd0beb857f864c3abbab3ce30013dfd2d3 (diff)
Consistently use Gauge to avoid the overloaded term Indicator.
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index 2fae71b4ea..67a3f0b589 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -696,10 +696,10 @@ ARDOUR_UI::build_menu_bar ()
hbox->pack_end (error_alert_button, false, false, 2);
- hbox->pack_end (dsp_load_indicator, false, false, 4);
+ hbox->pack_end (dsp_load_gauge, false, false, 4);
- hbox->pack_end (disk_space_indicator, false, false, 4);
- hbox->pack_end (disk_io_indicator, false, false, 4);
+ hbox->pack_end (disk_space_gauge, false, false, 4);
+ hbox->pack_end (disk_io_gauge, false, false, 4);
hbox->pack_end (sample_rate_label, false, false, 4);
hbox->pack_end (timecode_format_label, false, false, 4);
hbox->pack_end (format_label, false, false, 4);
@@ -715,10 +715,10 @@ ARDOUR_UI::build_menu_bar ()
// OSX provides its own wallclock, thank you very much
_status_bar_visibility.add (&wall_clock_label, X_("WallClock"), _("Wall Clock"), true);
#endif
- _status_bar_visibility.add (&disk_space_indicator, X_("Disk"), _("Disk Space"), !Profile->get_small_screen());
- _status_bar_visibility.add (&dsp_load_indicator, X_("DSP"), _("DSP"), true);
+ _status_bar_visibility.add (&disk_space_gauge, X_("Disk"), _("Disk Space"), !Profile->get_small_screen());
+ _status_bar_visibility.add (&dsp_load_gauge, X_("DSP"), _("DSP"), true);
_status_bar_visibility.add (&peak_thread_work_label,X_("Peakfile"), _("Active Peak-file Work"), false);
- _status_bar_visibility.add (&disk_io_indicator, X_("Buffers"), _("Buffers"), true);
+ _status_bar_visibility.add (&disk_io_gauge, X_("Buffers"), _("Buffers"), true);
_status_bar_visibility.add (&sample_rate_label, X_("Audio"), _("Audio"), true);
_status_bar_visibility.add (&timecode_format_label, X_("TCFormat"), _("Timecode Format"), true);
_status_bar_visibility.add (&format_label, X_("Format"), _("File Format"), true);