diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-19 16:51:58 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-19 16:51:58 -0500 |
commit | 8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2 (patch) | |
tree | 67ce696889f3435d258779e23a1d4883b7b38eef /lumina-desktop/desktop-plugins/NewDP.h | |
parent | Clean up the active window detection/usage for the task manager. (diff) | |
download | lumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.tar.gz lumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.tar.bz2 lumina-8f6e2f0ded898ec48fdf0fd7f4ba4464879061c2.zip |
Fix the global->local coordinates transformation for calculating whether the mouse has left a panel or not. Now it works properly on all screen edges.
Diffstat (limited to 'lumina-desktop/desktop-plugins/NewDP.h')
-rw-r--r-- | lumina-desktop/desktop-plugins/NewDP.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lumina-desktop/desktop-plugins/NewDP.h b/lumina-desktop/desktop-plugins/NewDP.h index 43d8e8f8..d06b2e60 100644 --- a/lumina-desktop/desktop-plugins/NewDP.h +++ b/lumina-desktop/desktop-plugins/NewDP.h @@ -19,6 +19,7 @@ #include "desktopview/DesktopViewPlugin.h" #include "notepad/NotepadPlugin.h" #include "audioplayer/PlayerWidget.h" +//#include "messagecenter/MessageCenter.h" class NewDP{ public: @@ -37,6 +38,8 @@ public: plug = new NotePadPlugin(parent, plugin); }else if(plugin.section("---",0,0)=="audioplayer"){ plug = new AudioPlayerPlugin(parent, plugin); + //}else if(plugin.section("---",0,0)=="messagecenter"){ + //plug = new MessageCenterPlugin(parent, plugin); }else{ qWarning() << "Invalid Desktop Plugin:"<<plugin << " -- Ignored"; } |