mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-16 18:36:03 +01:00
more debugging of the session folder issue
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12965 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a3e6243963
commit
b3e5169d99
1 changed files with 8 additions and 0 deletions
|
|
@ -43,6 +43,12 @@ using namespace PBD;
|
|||
#include "i18n.h"
|
||||
#include "new_session_dialog.h"
|
||||
|
||||
void
|
||||
showmecf (Gtk::FileChooserButton* fcb)
|
||||
{
|
||||
cerr << "current folder changed, now " << fcb->get_current_folder() << endl;
|
||||
}
|
||||
|
||||
NewSessionDialog::NewSessionDialog()
|
||||
: ArdourDialog ("session control")
|
||||
{
|
||||
|
|
@ -83,6 +89,8 @@ NewSessionDialog::NewSessionDialog()
|
|||
m_template = new Gtk::FileChooserButton();
|
||||
m_create_control_bus = new Gtk::CheckButton(_("Create Monitor Bus"));
|
||||
|
||||
m_folder->signal_current_folder_changed().connect (sigc::bind (sigc::ptr_fun (showmecf), m_folder));
|
||||
|
||||
Gtk::Adjustment *m_control_bus_channel_count_adj = Gtk::manage(new Gtk::Adjustment(2, 0, 100, 1, 10));
|
||||
m_control_bus_channel_count = new Gtk::SpinButton(*m_control_bus_channel_count_adj, 1, 0);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue