summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_format_selector.cc
diff options
context:
space:
mode:
authorAndré Nusser <andre.nusser@googlemail.com>2015-12-06 16:02:21 +0100
committerAndré Nusser <andre.nusser@googlemail.com>2015-12-06 16:03:31 +0100
commit88d500b28ac2bcab6fd7b6c830a1e6ae84c36b15 (patch)
treef689ce5d4b33428be996643495e0020a14d8b921 /gtk2_ardour/export_format_selector.cc
parent065d7c852a1586a3020affd6905f108abf252119 (diff)
Remove the PaddedButton widget as it broke rendering in some cases.
Diffstat (limited to 'gtk2_ardour/export_format_selector.cc')
-rw-r--r--gtk2_ardour/export_format_selector.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk2_ardour/export_format_selector.cc b/gtk2_ardour/export_format_selector.cc
index a2ba3f352f..407465605e 100644
--- a/gtk2_ardour/export_format_selector.cc
+++ b/gtk2_ardour/export_format_selector.cc
@@ -37,11 +37,6 @@ ExportFormatSelector::ExportFormatSelector () :
pack_start (remove_button, false, false, 3);
pack_start (new_button, false, false, 3);
- format_combo.set_name ("PaddedButton");
- edit_button.set_name ("PaddedButton");
- remove_button.set_name ("PaddedButton");
- new_button.set_name ("PaddedButton");
-
edit_button.signal_clicked().connect (sigc::hide_return (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::open_edit_dialog), false)));
remove_button.signal_clicked().connect (sigc::bind (sigc::mem_fun (*this, &ExportFormatSelector::remove_format), true));
new_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::add_new_format));