From e3a010ff69b0cde5b11b95b9cd40aa2787120166 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 12 Nov 2012 13:31:13 +0000 Subject: [PATCH] fix small screen mode width git-svn-id: svn://localhost/ardour2/branches/3.0@13448 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index d07ac8794a..56187be260 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -3028,7 +3028,7 @@ Editor::setup_toolbar () toolbar_hbox.pack_start (*_tools_tearoff, false, false); hbox->pack_start (snap_box, false, false); - if (!Profile->get_small_screen()) { + if (Profile->get_small_screen()) { hbox->pack_start (*nudge_box, false, false); } else { ARDOUR_UI::instance()->editor_transport_box().pack_start (*nudge_box, false, false);