diff options
author | Chris Xiong <chirs241097@gmail.com> | 2019-11-02 22:13:32 +0800 |
---|---|---|
committer | Chris Xiong <chirs241097@gmail.com> | 2019-11-02 22:13:32 +0800 |
commit | b2ef363f49db70219ac1eaebb7d69dcdade8d60b (patch) | |
tree | cfc0e8da88dc27b62578dccbce367736e020f63d /qmidiplayer-desktop/qmpchannelswindow.cpp | |
parent | 23525e2a648a23f099c2b533aa91839a2f8e829f (diff) | |
download | QMidiPlayer-b2ef363f49db70219ac1eaebb7d69dcdade8d60b.tar.xz |
Keyboard plugin: show additional information on the side.
qmpPluginAPI::registerEventHandler now accepts an optional argument
that determines whether the handler is called prior to or after an
event is sent.
Diffstat (limited to 'qmidiplayer-desktop/qmpchannelswindow.cpp')
-rw-r--r-- | qmidiplayer-desktop/qmpchannelswindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qmidiplayer-desktop/qmpchannelswindow.cpp b/qmidiplayer-desktop/qmpchannelswindow.cpp index 13f2c8d..41f545e 100644 --- a/qmidiplayer-desktop/qmpchannelswindow.cpp +++ b/qmidiplayer-desktop/qmpchannelswindow.cpp @@ -22,7 +22,7 @@ qmpChannelsModel::qmpChannelsModel(QObject*parent):QAbstractTableModel(parent) QMetaObject::invokeMethod(this, &qmpChannelsModel::updateChannelActivity, Qt::ConnectionType::QueuedConnection); } } - ,nullptr); + ,nullptr,false); QTimer*t=new QTimer(this); t->setInterval(500); t->setSingleShot(false); @@ -267,7 +267,7 @@ qmpChannelsWindow::qmpChannelsWindow(QWidget *parent) : if((e->type&0xF0)==0x90&&e->p2>0&&(e->flags&0x01)) emit this->noteOn(); } - ,nullptr); + ,nullptr,false); std::vector<std::string> devs=qmpMainWindow::getInstance()->getPlayer()->getMidiOutDevices(); size_t devc=devs.size(); std::set<std::string> devset; |