summaryrefslogtreecommitdiff
path: root/gtk2_ardour/add_route_dialog.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-11-23 08:35:41 +0000
committerDavid Robillard <d@drobilla.net>2011-11-23 08:35:41 +0000
commite70249ab658ef1b02da01d84bf2d9b46847e5194 (patch)
tree91c3e5e04152e201e19eec85b725fdefe76a5cb8 /gtk2_ardour/add_route_dialog.cc
parent8301e6c55fe3d827b155618ef52eba1966b44d78 (diff)
Pack toolbar combo boxes with expand=false and remove size kludges.
Turns out gtk these days sizes combo boxes with precisely enough space if packed to not expand, none of this mess is necessary any more. git-svn-id: svn://localhost/ardour2/branches/3.0@10790 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/add_route_dialog.cc')
-rw-r--r--gtk2_ardour/add_route_dialog.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/add_route_dialog.cc b/gtk2_ardour/add_route_dialog.cc
index a731b186a1..9cfb747397 100644
--- a/gtk2_ardour/add_route_dialog.cc
+++ b/gtk2_ardour/add_route_dialog.cc
@@ -245,7 +245,7 @@ AddRouteDialog::refill_track_modes ()
}
}
- set_popdown_strings (mode_combo, s, true);
+ set_popdown_strings (mode_combo, s);
mode_combo.set_active_text (s.front());
}
@@ -386,7 +386,7 @@ AddRouteDialog::refill_channel_setups ()
channel_combo_strings.push_back ((*i).name);
}
- set_popdown_strings (channel_combo, channel_combo_strings, true);
+ set_popdown_strings (channel_combo, channel_combo_strings);
channel_combo.set_active_text (channel_combo_strings.front());
}