summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorSakari Bergen <sakari.bergen@beatwaves.net>2012-01-28 18:39:56 +0000
committerSakari Bergen <sakari.bergen@beatwaves.net>2012-01-28 18:39:56 +0000
commit80004a33aa286208161ae18ce6ca917e8f4442c9 (patch)
treec5c5dc9738f75b8c11e0834a22d6dddcd683278c /gtk2_ardour/export_dialog.cc
parent6f23443c26936d5f6224a36b9d2a6257367e42eb (diff)
Move export progress text to progress bar from separate label
git-svn-id: svn://localhost/ardour2/branches/3.0@11379 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 845a4a3680..c5e20c01ae 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -122,7 +122,6 @@ ExportDialog::init ()
/* Progress indicators */
- progress_widget.pack_start (progress_label, false, false, 6);
progress_widget.pack_start (progress_bar, false, false, 6);
/* Buttons */
@@ -340,7 +339,7 @@ ExportDialog::progress_timeout ()
status->timespan, status->total_timespans);
progress = ((float) status->processed_frames_current_timespan) / status->total_frames_current_timespan;
}
- progress_label.set_text (status_text);
+ progress_bar.set_text (status_text);
if (progress < previous_progress) {
// Work around gtk bug
@@ -448,4 +447,3 @@ StemExportDialog::init_components ()
channel_selector.reset (new TrackExportChannelSelector (_session, profile_manager));
file_notebook.reset (new ExportFileNotebook ());
}
-