summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_timefx.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/editor_timefx.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/editor_timefx.cc')
-rw-r--r--gtk2_ardour/editor_timefx.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_timefx.cc b/gtk2_ardour/editor_timefx.cc
index 45cc42b11c..2efdc03f8f 100644
--- a/gtk2_ardour/editor_timefx.cc
+++ b/gtk2_ardour/editor_timefx.cc
@@ -26,6 +26,8 @@
#include <pbd/pthread_utils.h>
#include <pbd/memento_command.h>
+#include <gtkmm2ext/window_title.h>
+
#include "editor.h"
#include "audio_time_axis.h"
#include "audio_region_view.h"
@@ -44,6 +46,7 @@ using namespace ARDOUR;
using namespace PBD;
using namespace sigc;
using namespace Gtk;
+using namespace Gtkmm2ext;
Editor::TimeStretchDialog::TimeStretchDialog (Editor& e)
: ArdourDialog ("time stretch dialog"),
@@ -53,9 +56,12 @@ Editor::TimeStretchDialog::TimeStretchDialog (Editor& e)
{
set_modal (true);
set_position (Gtk::WIN_POS_MOUSE);
- set_title (_("ardour: timestretch"));
set_name (N_("TimeStretchDialog"));
+ WindowTitle title(Glib::get_application_name());
+ title += _("Timestretch");
+ set_title(title.get_string());
+
get_vbox()->set_spacing (5);
get_vbox()->set_border_width (5);
get_vbox()->pack_start (upper_button_box);