mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
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:
parent
c89eaf0297
commit
c69ef10067
18 changed files with 177 additions and 77 deletions
|
|
@ -24,6 +24,7 @@
|
|||
#include <ardour/utils.h>
|
||||
#include <gtkmm2ext/utils.h>
|
||||
#include <gtkmm2ext/stop_signal.h>
|
||||
#include <gtkmm2ext/window_title.h>
|
||||
#include <cmath>
|
||||
|
||||
#include "audio_region_editor.h"
|
||||
|
|
@ -38,6 +39,7 @@ using namespace ARDOUR;
|
|||
using namespace PBD;
|
||||
using namespace sigc;
|
||||
using namespace std;
|
||||
using namespace Gtkmm2ext;
|
||||
|
||||
AudioRegionEditor::AudioRegionEditor (Session& s, boost::shared_ptr<AudioRegion> r, AudioRegionView& rv)
|
||||
: RegionEditor (s),
|
||||
|
|
@ -118,9 +120,10 @@ AudioRegionEditor::AudioRegionEditor (Session& s, boost::shared_ptr<AudioRegion>
|
|||
|
||||
signal_delete_event().connect (bind (sigc::ptr_fun (just_hide_it), static_cast<Window *> (this)));
|
||||
|
||||
string title = _("ardour: region ");
|
||||
title += _region->name();
|
||||
set_title (title);
|
||||
WindowTitle title(string_compose (_("Region %1"), _region->name()));
|
||||
title += Glib::get_application_name();
|
||||
|
||||
set_title (title.get_string());
|
||||
|
||||
show_all();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue