summaryrefslogtreecommitdiff
path: root/gtk2_ardour/transcode_video_dialog.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/transcode_video_dialog.cc
parent065d7c852a1586a3020affd6905f108abf252119 (diff)
Remove the PaddedButton widget as it broke rendering in some cases.
Diffstat (limited to 'gtk2_ardour/transcode_video_dialog.cc')
-rw-r--r--gtk2_ardour/transcode_video_dialog.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/gtk2_ardour/transcode_video_dialog.cc b/gtk2_ardour/transcode_video_dialog.cc
index 1274685d82..20dcbb8748 100644
--- a/gtk2_ardour/transcode_video_dialog.cc
+++ b/gtk2_ardour/transcode_video_dialog.cc
@@ -95,7 +95,6 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
path_hbox->pack_start (path_label, false, false, 3);
path_hbox->pack_start (path_entry, true, true, 3);
path_hbox->pack_start (browse_button, false, false, 3);
- browse_button.set_name ("PaddedButton");
path_entry.set_width_chars(38);
height_spinner.set_sensitive(false);
@@ -181,8 +180,6 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
l->set_use_markup ();
options_box->pack_start (*l, false, true, 4);
- video_combo.set_name ("PaddedButton");
-
if (ffok) {
video_combo.append_text(_("Reference from Current Location (Previously Transcoded Files Only)"));
video_combo.append_text(_("Import/Transcode Video to Session"));
@@ -226,7 +223,6 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
l = manage (new Label (_("Scale Video: Width = "), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
t->attach (*l, 0, 1, 0, 1);
- scale_combo.set_name ("PaddedButton");
t->attach (scale_combo, 1, 2, 0, 1);
t->attach (aspect_checkbox, 2, 3, 0, 1);
t->attach (height_spinner, 3, 4, 0, 1);
@@ -253,7 +249,6 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
l = manage (new Label (_("Extract Audio:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
t->attach (*l, 0, 1, 2, 3);
- audio_combo.set_name ("PaddedButton");
t->attach (audio_combo, 1, 4, 2, 3);
t->attach (ltc_detect, 1, 4, 3, 4);
if (as.size() == 0) {