mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-08 07:45:00 +01:00
MCP: fix fader touch button IDs; remove last traces of MidiControlUI
git-svn-id: svn://localhost/ardour2/branches/3.0@11873 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
01c1eeb279
commit
aa22f85c1b
2 changed files with 3 additions and 3 deletions
|
|
@ -53,7 +53,7 @@ public:
|
|||
fader_base_id = 0x0,
|
||||
pot_base_id = 0x10,
|
||||
jog_base_id = 0x3c,
|
||||
fader_touch_button_base_id = 0x68,
|
||||
fader_touch_button_base_id = 0xe0,
|
||||
vselect_button_base_id = 0x20,
|
||||
select_button_base_id = 0x18,
|
||||
mute_button_base_id = 0x10,
|
||||
|
|
|
|||
|
|
@ -93,7 +93,7 @@ bool MackieControlProtocol::probe()
|
|||
}
|
||||
|
||||
MackieControlProtocol::MackieControlProtocol (Session& session)
|
||||
: ControlProtocol (session, X_("Mackie"), MidiControlUI::instance())
|
||||
: ControlProtocol (session, X_("Mackie"), this)
|
||||
, AbstractUI<MackieControlUIRequest> ("mackie")
|
||||
, _current_initial_bank (0)
|
||||
, _timecode_type (ARDOUR::AnyTime::BBT)
|
||||
|
|
@ -337,7 +337,7 @@ MackieControlProtocol::set_active (bool yn)
|
|||
|
||||
Glib::RefPtr<Glib::TimeoutSource> periodic_timeout = Glib::TimeoutSource::create (100); // milliseconds
|
||||
periodic_connection = periodic_timeout->connect (sigc::mem_fun (*this, &MackieControlProtocol::periodic));
|
||||
periodic_timeout->attach (MidiControlUI::instance()->main_loop()->get_context());
|
||||
periodic_timeout->attach (main_loop()->get_context());
|
||||
|
||||
} else {
|
||||
BaseUI::quit ();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue