Clear out any command line session name on closing a session so that the same session...
[ardour.git] / gtk2_ardour / export_format_selector.cc
index 1f1158a21f3684b34d0332a8cdf908b4e17c37dd..122facdd39d8affa4e3de581c1477c145f4e850b 100644 (file)
@@ -22,9 +22,9 @@
 
 #include "export_format_dialog.h"
 
-#include <ardour/export_format_specification.h>
-#include <ardour/export_profile_manager.h>
-#include <ardour/session.h>
+#include "ardour/export_format_specification.h"
+#include "ardour/export_profile_manager.h"
+#include "ardour/session.h"
 
 #include "i18n.h"
 
@@ -38,6 +38,11 @@ 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::mem_fun (*this, &ExportFormatSelector::remove_format));
        new_button.signal_clicked().connect (sigc::mem_fun (*this, &ExportFormatSelector::add_new_format));