summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-11 16:21:52 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-11 16:21:52 +0000
commit7abd6047cbe22d14f037ef729dba529e31c1e401 (patch)
tree17fe3b3eed780a21621a168bbb72e68f7594647f /gtk2_ardour
parent9bb07c052467711429247eaa4e53c748e6e74760 (diff)
remove time master button, move timecode sync button
git-svn-id: svn://localhost/ardour2/branches/3.0@10545 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/ardour_ui2.cc19
1 files changed, 7 insertions, 12 deletions
diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc
index 9209b61afb..98a8d4ecc5 100644
--- a/gtk2_ardour/ardour_ui2.cc
+++ b/gtk2_ardour/ardour_ui2.cc
@@ -339,9 +339,6 @@ ARDOUR_UI::setup_transport ()
tbox->pack_start (goto_start_button, false, false);
tbox->pack_start (goto_end_button, false, false);
- /* translators: Egternal is "External" with a descender character */
- set_size_request_to_display_given_text (sync_button, X_("Egternal"), 4, 10);
-
Glib::RefPtr<SizeGroup> transport_button_size_group1 = SizeGroup::create (SIZE_GROUP_HORIZONTAL);
transport_button_size_group1->add_widget (goto_start_button);
transport_button_size_group1->add_widget (goto_end_button);
@@ -403,27 +400,25 @@ ARDOUR_UI::setup_transport ()
/* transport related toggle controls */
- HBox* toggle_box = manage(new HBox);
VBox* auto_box = manage (new VBox);
- auto_box->set_spacing (2);
auto_box->set_homogeneous (true);
- toggle_box->set_spacing (2);
- toggle_box->set_homogeneous (true);
- auto_box->pack_start (auto_play_button, true, false);
- auto_box->pack_start (auto_return_button, true, false);
+ auto_box->set_spacing (2);
+ auto_box->pack_start (sync_button, false, false);
+ auto_box->pack_start (auto_play_button, false, false);
+ auto_box->pack_start (auto_return_button, false, false);
if (!Profile->get_small_screen()) {
- toggle_box->pack_start (*auto_box, false, false);
+ transport_tearoff_hbox.pack_start (*auto_box, false, false);
}
- transport_tearoff_hbox.pack_start (*toggle_box, false, false);
+/*
VBox* time_controls = manage (new VBox);
time_controls->set_spacing (2);
time_controls->set_homogeneous (true);
time_controls->pack_start (sync_button, true, false);
time_controls->pack_start (time_master_button, true, false);
+*/
transport_tearoff_hbox.pack_start (*clock_box, false, false);
- transport_tearoff_hbox.pack_start (*time_controls, false, false);
transport_tearoff_hbox.pack_start (click_button, false, false);
time_info_box = manage (new TimeInfoBox);