mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 09:36:33 +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
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue