summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-09-22 16:54:17 +0000
committerDavid Robillard <d@drobilla.net>2008-09-22 16:54:17 +0000
commit8623302340b091fd65a5ad2ff5dc25915ea297ca (patch)
tree0f10b12399392de3fb8f27f00802ec37c5970528 /gtk2_ardour/add_route_dialog.cc
parentea1c7058391bfd0bf080f2b3b0789a3e89437fff (diff)
Set add route dialog non-resizeable so WMs size it more sensibly (looked ridiculous in ion3).
Tab cleanups. git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@3787 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/add_route_dialog.cc')
-rw-r--r--gtk2_ardour/add_route_dialog.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/add_route_dialog.cc b/gtk2_ardour/add_route_dialog.cc
index 1b78e01c35..d5e207ad79 100644
--- a/gtk2_ardour/add_route_dialog.cc
+++ b/gtk2_ardour/add_route_dialog.cc
@@ -93,6 +93,7 @@ AddRouteDialog::AddRouteDialog ()
set_name ("AddRouteDialog");
set_wmclass (X_("ardour_add_track_bus"), "Ardour");
set_position (Gtk::WIN_POS_MOUSE);
+ set_resizable (false);
name_template_entry.set_name ("AddRouteDialogNameTemplateEntry");
track_button.set_name ("AddRouteDialogRadioButton");
@@ -134,7 +135,7 @@ AddRouteDialog::AddRouteDialog ()
VBox *dvbox = manage (new VBox);
HBox *dhbox = manage (new HBox);
- ccframe.set_label (_("Channel Configuration"));
+ ccframe.set_label (_("Channel Configuration"));
ccframe.set_shadow_type (SHADOW_IN);
dvbox->pack_start (channel_combo, true, false, 5);