summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2014-08-11 15:08:57 -0500
committerBen Loftis <ben@harrisonconsoles.com>2014-08-11 15:08:57 -0500
commit5c1a561325a964d4025750bfb6226cf3843d253a (patch)
treea4719f417549ba7be26c70e9fe47a09aef770bf5 /gtk2_ardour/time_axis_view.cc
parentb41df8e120b4b170fc92c8971c2e852a7dacd1d6 (diff)
change packing so number_label shares space with name_label
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 66e9101e42..aeb1ff41df 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -125,7 +125,7 @@ TimeAxisView::TimeAxisView (ARDOUR::Session* sess, PublicEditor& ed, TimeAxisVie
name_label.set_ellipsize (Pango::ELLIPSIZE_MIDDLE);
delete an_entry;
- name_hbox.pack_start (name_label, true, true);
+ name_hbox.pack_end (name_label, true, true);
name_hbox.show ();
name_label.show ();
@@ -617,7 +617,7 @@ TimeAxisView::begin_name_edit ()
name_hbox.remove (name_label);
}
- name_hbox.pack_start (*name_entry, false, false);
+ name_hbox.pack_end (*name_entry, false, false);
name_entry->show ();
name_entry->select_region (0, -1);
@@ -662,7 +662,7 @@ TimeAxisView::end_name_edit (int response)
/* put the name label back */
- name_hbox.pack_start (name_label);
+ name_hbox.pack_end (name_label);
name_label.show ();
if (edit_next) {