summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2010-03-30 15:46:17 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2010-03-30 15:46:17 +0000
commit455058835e2fc1794803a56de94d01cbf52998c5 (patch)
treee624e07839e8bb63fff9fc399d304669e1d6c68b /gtk2_ardour/export_dialog.cc
parenta743d20dce499f3b6f1418967e200beaa670b375 (diff)
Remove the realtime export button from the export dialog, as it's not really functional atm
git-svn-id: svn://localhost/ardour2/branches/3.0@6809 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc14
1 files changed, 8 insertions, 6 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 2ed0086ae9..d60e5753c4 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -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>";