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
This commit is contained in:
Paul Davis 2007-03-18 16:45:43 +00:00
parent c89eaf0297
commit c69ef10067
18 changed files with 177 additions and 77 deletions

View file

@ -31,6 +31,7 @@
#include <gtkmm2ext/utils.h>
#include <gtkmm2ext/choice.h>
#include <gtkmm2ext/window_title.h>
#include <ardour/audioengine.h>
#include <ardour/session.h>
@ -67,6 +68,7 @@ using namespace ARDOUR;
using namespace PBD;
using namespace sigc;
using namespace Gtk;
using namespace Gtkmm2ext;
using namespace Editing;
/***********************************************************************
@ -1763,7 +1765,10 @@ Editor::rename_region ()
return;
}
dialog.set_title (_("ardour: rename region"));
WindowTitle title(Glib::get_application_name());
title += _("Rename Region");
dialog.set_title (title.get_string());
dialog.set_name ("RegionRenameWindow");
dialog.set_size_request (300, -1);
dialog.set_position (Gtk::WIN_POS_MOUSE);
@ -2526,8 +2531,10 @@ Editor::freeze_route ()
if (interthread_progress_window == 0) {
build_interthread_progress_window ();
}
interthread_progress_window->set_title (_("ardour: freeze"));
WindowTitle title(Glib::get_application_name());
title += _("Freeze");
interthread_progress_window->set_title (title.get_string());
interthread_progress_window->set_position (Gtk::WIN_POS_MOUSE);
interthread_progress_window->show_all ();
interthread_progress_bar.set_fraction (0.0f);