mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 14:16:31 +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
|
|
@ -32,12 +32,16 @@
|
|||
#include <gtkmm/stock.h>
|
||||
#include <gdkmm/cursor.h>
|
||||
|
||||
#include <gtkmm2ext/window_title.h>
|
||||
|
||||
using namespace Gtkmm2ext;
|
||||
|
||||
#include "opts.h"
|
||||
|
||||
NewSessionDialog::NewSessionDialog()
|
||||
: ArdourDialog ("session control")
|
||||
{
|
||||
session_name_label = Gtk::manage(new class Gtk::Label(_("Name :")));
|
||||
session_name_label = Gtk::manage(new class Gtk::Label(_("Name :")));
|
||||
m_name = Gtk::manage(new class Gtk::Entry());
|
||||
m_name->set_text(GTK_ARDOUR::session_name);
|
||||
|
||||
|
|
@ -338,7 +342,11 @@ NewSessionDialog::NewSessionDialog()
|
|||
get_vbox()->set_homogeneous(false);
|
||||
get_vbox()->set_spacing(0);
|
||||
get_vbox()->pack_start(*m_notebook, Gtk::PACK_SHRINK, 0);
|
||||
set_title(_("ardour: session control"));
|
||||
|
||||
WindowTitle title(Glib::get_application_name());
|
||||
title += _("Session Control");
|
||||
set_title(title.get_string());
|
||||
|
||||
//set_modal(false);
|
||||
//property_window_position().set_value(Gtk::WIN_POS_NONE);
|
||||
set_resizable(false);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue