commit 2474f45c0e15bd840ecde3abff35d7e602636fab
parent 337fd09ac51b27a1b6db7cbe00be86be06c4bade
Author: Alexandre BIQUE <bique.alexandre@gmail.com>
Date: Fri, 10 Sep 2021 18:05:35 +0200
Missing show()
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/examples/plugins/gui/application.cc b/examples/plugins/gui/application.cc
@@ -150,6 +150,7 @@ void Application::onMessage(const clap::RemoteChannel::Message &msg) {
#ifdef Q_OS_WIN
hostWindow_.reset(QWindow::fromWinId(rq.hwnd));
quickView_->setParent(hostWindow_.get());
+ _quickView->show();
sync();
rp.succeed = true;
#endif
@@ -167,6 +168,7 @@ void Application::onMessage(const clap::RemoteChannel::Message &msg) {
#ifdef Q_OS_MACOS
hostWindow_.reset(QWindow::fromWinId(rq.nsView));
quickView_->setParent(hostWindow_.get());
+ _quickView->show();
sync();
rp.succeed = true;
#endif