diff options
author | Ken Moore <ken@ixsystems.com> | 2016-11-10 12:38:56 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-11-10 12:38:56 -0500 |
commit | 634557bad1b1b6781fe693d37b480897cc55376e (patch) | |
tree | f5f26c9ffdbaeeef1082ed3260b44cd2bde0f6d2 /src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp | |
parent | Disable the theme engine from the core-utils. (diff) | |
download | lumina-634557bad1b1b6781fe693d37b480897cc55376e.tar.gz lumina-634557bad1b1b6781fe693d37b480897cc55376e.tar.bz2 lumina-634557bad1b1b6781fe693d37b480897cc55376e.zip |
Add pass-through for context menu requests on many desktop plugins.
This should allow the user to click almost anywhere on the plugin to actually see the menu for managing the plugin itself.
Diffstat (limited to 'src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp')
-rw-r--r-- | src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp b/src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp index 8dc58e0a..c330d6c0 100644 --- a/src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp +++ b/src-qt5/core/lumina-desktop/desktop-plugins/rssreader/RSSFeedPlugin.cpp @@ -20,7 +20,7 @@ RSSFeedPlugin::RSSFeedPlugin(QWidget* parent, QString ID) : LDPlugin(parent, ID) //Load the global settings setprefix = "rssreader/"; //this structure/prefix should be used for *all* plugins of this type RSS = new RSSReader(this, setprefix); - + ui->text_feed->setContextMenuPolicy(Qt::NoContextMenu); //Create the options menu optionsMenu = new QMenu(this); ui->tool_options->setMenu(optionsMenu); |