From 7eeb9fd77a565815378e4ebd659a6d69e919c1fd Mon Sep 17 00:00:00 2001 From: f4exb Date: Sun, 12 Jun 2022 23:16:26 +0200 Subject: [PATCH] Radio Clock: fixed common channel settings menu trigger. Fixes #1286 --- plugins/channelrx/radioclock/radioclockgui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/channelrx/radioclock/radioclockgui.cpp b/plugins/channelrx/radioclock/radioclockgui.cpp index 6e98b8dc6..f5cd73d6b 100644 --- a/plugins/channelrx/radioclock/radioclockgui.cpp +++ b/plugins/channelrx/radioclock/radioclockgui.cpp @@ -339,6 +339,7 @@ RadioClockGUI::RadioClockGUI(PluginAPI* pluginAPI, DeviceUISet *deviceUISet, Bas m_deviceUISet->addChannelMarker(&m_channelMarker); + connect(this, SIGNAL(customContextMenuRequested(const QPoint &)), this, SLOT(onMenuDialogCalled(const QPoint &))); connect(&m_channelMarker, SIGNAL(changedByCursor()), this, SLOT(channelMarkerChangedByCursor())); connect(&m_channelMarker, SIGNAL(highlightedByCursor()), this, SLOT(channelMarkerHighlightedByCursor())); connect(getInputMessageQueue(), SIGNAL(messageEnqueued()), this, SLOT(handleInputMessages()));