summaryrefslogtreecommitdiff
path: root/gtk2_ardour/option_editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-12-30 02:33:27 +0100
committerRobin Gareus <robin@gareus.org>2016-12-30 02:33:27 +0100
commit1d431bf6c4259ec6ee6a1b445c635fe89733e7f9 (patch)
tree7d4a1f62ed2c96743b71ba250ab759ffe32993fa /gtk2_ardour/option_editor.cc
parentc67e831597b38294afe09ca9c2120f42aee5d0b8 (diff)
Left align notes in Preferences.
Diffstat (limited to 'gtk2_ardour/option_editor.cc')
-rw-r--r--gtk2_ardour/option_editor.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/option_editor.cc b/gtk2_ardour/option_editor.cc
index 72161d07f4..f786496050 100644
--- a/gtk2_ardour/option_editor.cc
+++ b/gtk2_ardour/option_editor.cc
@@ -83,7 +83,7 @@ void
OptionEditorComponent::maybe_add_note (OptionEditorPage* p, int n)
{
if (!_note.empty ()) {
- Gtk::Label* l = manage (new Gtk::Label (string_compose (X_("<i>%1</i>"), _note)));
+ Gtk::Label* l = manage (left_aligned_label (string_compose (X_("<i>%1</i>"), _note)));
l->set_use_markup (true);
l->set_line_wrap (true);
p->table.attach (*l, 1, 3, n, n + 1, FILL | EXPAND);