Remove the realtime export button from the export dialog, as it's not really function...
authorSakari Bergen <sakari.bergen@beatwaves.net>
Tue, 30 Mar 2010 15:46:17 +0000 (15:46 +0000)
committerSakari Bergen <sakari.bergen@beatwaves.net>
Tue, 30 Mar 2010 15:46:17 +0000 (15:46 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@6809 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/export_dialog.cc

index 2ed0086ae939c168e7320f34056004564cae7724..d60e5753c4c6300f17e7f3c82753541ac496181e 100644 (file)
@@ -122,13 +122,15 @@ ExportDialog::init ()
        /* Buttons */
 
        cancel_button = add_button (Gtk::Stock::CANCEL, RESPONSE_CANCEL);
-       rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
-       fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
+       // Realtime export is disabled for now, as it will most probably not work
+       //rt_export_button = add_button (_("Realtime Export"), RESPONSE_RT);
+       //fast_export_button = add_button (_("Fast Export"), RESPONSE_FAST);
+       fast_export_button = add_button (_("Export"), RESPONSE_FAST);
 
        list_files_button.set_name ("PaddedButton");
 
        cancel_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::close_dialog));
-       rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
+       //rt_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_rt));
        fast_export_button->signal_clicked().connect (sigc::mem_fun (*this, &ExportDialog::export_fw));
 
        /* Done! */
@@ -233,7 +235,7 @@ ExportDialog::update_warnings ()
        list_files_string = "";
 
        fast_export_button->set_sensitive (true);
-       rt_export_button->set_sensitive (true);
+       //rt_export_button->set_sensitive (true);
 
        /* Add new warnings */
 
@@ -294,7 +296,7 @@ ExportDialog::show_progress ()
        status->running = true;
 
        cancel_button->set_label (_("Stop Export"));
-       rt_export_button->set_sensitive (false);
+       //rt_export_button->set_sensitive (false);
        fast_export_button->set_sensitive (false);
 
        progress_bar.set_fraction (0.0);
@@ -349,7 +351,7 @@ void
 ExportDialog::add_error (Glib::ustring const & text)
 {
        fast_export_button->set_sensitive (false);
-       rt_export_button->set_sensitive (false);
+       //rt_export_button->set_sensitive (false);
 
        if (warn_string.empty()) {
                warn_string = _("<span color=\"#ffa755\">Error: ") + text + "</span>";