mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +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
|
|
@ -28,6 +28,7 @@
|
|||
#include <midi++/manager.h>
|
||||
#include <gtkmm2ext/stop_signal.h>
|
||||
#include <gtkmm2ext/utils.h>
|
||||
#include <gtkmm2ext/window_title.h>
|
||||
|
||||
#include "public_editor.h"
|
||||
#include "keyboard.h"
|
||||
|
|
@ -52,7 +53,7 @@ using namespace std;
|
|||
static vector<string> positional_sync_strings;
|
||||
|
||||
OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
|
||||
: Dialog ("option editor"),
|
||||
: Dialog ("options editor"),
|
||||
ui (uip),
|
||||
editor (ed),
|
||||
mixer (mixui),
|
||||
|
|
@ -97,9 +98,12 @@ OptionEditor::OptionEditor (ARDOUR_UI& uip, PublicEditor& ed, Mixer_UI& mixui)
|
|||
click_io_selector = 0;
|
||||
auditioner_io_selector = 0;
|
||||
session = 0;
|
||||
|
||||
WindowTitle title(Glib::get_application_name());
|
||||
title += _("Options Editor");
|
||||
set_title(title.get_string());
|
||||
|
||||
set_default_size (300, 300);
|
||||
set_title (_("ardour: options editor"));
|
||||
set_wmclass (X_("ardour_option_editor"), "Ardour");
|
||||
|
||||
set_name ("OptionsWindow");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue