summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-02-25 08:49:18 -0800
committerLen Ovens <len@ovenwerks.net>2017-02-25 08:49:18 -0800
commitdf52c8c748a3fdc2ca0d3d8406a2f5b5550de971 (patch)
treee809d52f8f68005ba0a4cb9c660c6447f1093f3d
parent18ec1840e700e6fbe8a805cd31831df7774f0816 (diff)
OSC: correct busses spelling in GUI
-rw-r--r--libs/surfaces/osc/osc_gui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/surfaces/osc/osc_gui.cc b/libs/surfaces/osc/osc_gui.cc
index 731ede9a02..183bd910c7 100644
--- a/libs/surfaces/osc/osc_gui.cc
+++ b/libs/surfaces/osc/osc_gui.cc
@@ -206,7 +206,7 @@ OSC_GUI::OSC_GUI (OSC& p)
sttable->attach (midi_tracks, 1, 2, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
++stn;
- label = manage (new Gtk::Label(_("Audio Buses:")));
+ label = manage (new Gtk::Label(_("Audio Busses:")));
label->set_alignment(1, .5);
sttable->attach (*label, 0, 1, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
sttable->attach (audio_buses, 1, 2, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
@@ -218,7 +218,7 @@ OSC_GUI::OSC_GUI (OSC& p)
sttable->attach (audio_auxes, 1, 2, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);
++stn;
- label = manage (new Gtk::Label(_("Midi Buses:")));
+ label = manage (new Gtk::Label(_("Midi Busses:")));
label->set_alignment(1, .5);
sttable->attach (*label, 0, 1, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0));
sttable->attach (midi_buses, 1, 2, stn, stn+1, AttachOptions(FILL|EXPAND), AttachOptions(0), 0, 0);