aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/LPanel.cpp
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-23 10:18:21 -0400
committerKen Moore <ken@pcbsd.org>2015-04-23 10:18:21 -0400
commit6d89f62bd04d1bc6ed7e76e6d8c644210029d6f0 (patch)
tree6b45668c064ea979f5df868e856988cf60dd0d3e /lumina-desktop/LPanel.cpp
parentMake the open/openwith functionality in lumina-fm multi-selection aware. Also... (diff)
parentUpdate the Fluxbox startup command to use the new "-no-slit" and "-no-toolbar... (diff)
downloadlumina-6d89f62bd04d1bc6ed7e76e6d8c644210029d6f0.tar.gz
lumina-6d89f62bd04d1bc6ed7e76e6d8c644210029d6f0.tar.bz2
lumina-6d89f62bd04d1bc6ed7e76e6d8c644210029d6f0.zip
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'lumina-desktop/LPanel.cpp')
-rw-r--r--lumina-desktop/LPanel.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/lumina-desktop/LPanel.cpp b/lumina-desktop/LPanel.cpp
index 1f59ba8b..d5be8670 100644
--- a/lumina-desktop/LPanel.cpp
+++ b/lumina-desktop/LPanel.cpp
@@ -12,6 +12,7 @@
LPanel::LPanel(QSettings *file, int scr, int num, QWidget *parent) : QWidget(){
//Take care of inputs
+ this->setMouseTracking(true);
if(DEBUG){ qDebug() << " - Creating Panel:" << scr << num; }
bgWindow = parent; //save for later
//Setup the widget overlay for the entire panel to provide transparency effects
@@ -283,6 +284,7 @@ void LPanel::enterEvent(QEvent *event){
//Move the panel out so it is fully available
this->move(showpoint);
}
+ this->activateWindow();
event->accept(); //just to quiet the compile warning
}
bgstack15