mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
finally add the snapshot manager under Window/mixer-snapshot
This commit is contained in:
parent
8c9fa42fb3
commit
9baf4da488
3 changed files with 4 additions and 1 deletions
|
|
@ -572,6 +572,7 @@
|
|||
<menuitem action='toggle-bundle-manager'/>
|
||||
#endif
|
||||
<menuitem action='toggle-big-clock'/>
|
||||
<menuitem action='toggle-mixer-snapshot'/>
|
||||
<menuitem action='toggle-big-transport'/>
|
||||
<menuitem action='toggle-transport-masters'/>
|
||||
#if 0
|
||||
|
|
|
|||
|
|
@ -520,6 +520,7 @@ ARDOUR_UI::ARDOUR_UI (int *argcp, char **argvp[], const char* localedir)
|
|||
WM::Manager::instance().register_window (&bundle_manager);
|
||||
WM::Manager::instance().register_window (&location_ui);
|
||||
WM::Manager::instance().register_window (&big_clock_window);
|
||||
WM::Manager::instance().register_window (&mixer_snapshot_dialog);
|
||||
WM::Manager::instance().register_window (&big_transport_window);
|
||||
WM::Manager::instance().register_window (&virtual_keyboard_window);
|
||||
WM::Manager::instance().register_window (&audio_port_matrix);
|
||||
|
|
|
|||
|
|
@ -44,7 +44,6 @@ struct ColumnInfo {
|
|||
MixerSnapshotDialog::MixerSnapshotDialog(Session* s)
|
||||
: ArdourDialog(_("Mixer Snapshot Manager:"), true, false)
|
||||
{
|
||||
set_session(s);
|
||||
global_model = Gtk::ListStore::create(_columns);
|
||||
local_model = Gtk::ListStore::create(_columns);
|
||||
|
||||
|
|
@ -53,6 +52,8 @@ MixerSnapshotDialog::MixerSnapshotDialog(Session* s)
|
|||
|
||||
global_display.signal_button_press_event().connect(sigc::bind(sigc::mem_fun(*this, &MixerSnapshotDialog::button_press), true), false);
|
||||
local_display.signal_button_press_event().connect(sigc::bind(sigc::mem_fun(*this, &MixerSnapshotDialog::button_press), false), false);
|
||||
|
||||
set_session(s);
|
||||
}
|
||||
|
||||
void MixerSnapshotDialog::set_session(Session* s)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue