summaryrefslogtreecommitdiff
path: root/gtk2_ardour/export_dialog.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2007-03-18 16:45:43 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2007-03-18 16:45:43 +0000
commitc69ef10067cbdde5fc87ff676097aa4ffe406f2c (patch)
treef31cc3e557d00646536ff5d3eb1ef175f6d5c7bc /gtk2_ardour/export_dialog.cc
parentc89eaf029700c635d7b775abb7059be0eae7cd3f (diff)
fix rect redraw problem(s); make zoom range rect visible again at the right time; apply tim's window title patch
git-svn-id: svn://localhost/ardour2/trunk@1617 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/export_dialog.cc')
-rw-r--r--gtk2_ardour/export_dialog.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/export_dialog.cc b/gtk2_ardour/export_dialog.cc
index 75b0f8c1e9..1c70c758a5 100644
--- a/gtk2_ardour/export_dialog.cc
+++ b/gtk2_ardour/export_dialog.cc
@@ -29,6 +29,8 @@
#include <pbd/xml++.h>
#include <gtkmm2ext/utils.h>
+#include <gtkmm2ext/window_title.h>
+
#include <ardour/export.h>
#include <ardour/sndfile_helpers.h>
#include <ardour/audio_track.h>
@@ -51,6 +53,7 @@ using namespace ARDOUR;
using namespace PBD;
using namespace sigc;
using namespace Gtk;
+using namespace Gtkmm2ext;
static const gchar *sample_rates[] = {
N_("22.05kHz"),
@@ -117,8 +120,11 @@ ExportDialog::ExportDialog(PublicEditor& e)
track_and_master_selection_allowed = true;
channel_count_selection_allowed = true;
export_cd_markers_allowed = true;
+
+ WindowTitle title(Glib::get_application_name());
+ title += _("Export");
- set_title (_("ardour: export"));
+ set_title (title.get_string());
set_wmclass (X_("ardour_export"), "Ardour");
set_name ("ExportWindow");
add_events (Gdk::KEY_PRESS_MASK|Gdk::KEY_RELEASE_MASK);