aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-03-02 12:50:23 -0500
committerKen Moore <ken@ixsystems.com>2017-03-02 12:50:23 -0500
commitc6582b1f4683e11da298248a193304dcd91b2797 (patch)
tree4c3e55340ad9c117e14f01f68f98b547982afef8 /src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h
parentMerge branch 'master' of github.com:trueos/lumina (diff)
downloadlumina-c6582b1f4683e11da298248a193304dcd91b2797.tar.gz
lumina-c6582b1f4683e11da298248a193304dcd91b2797.tar.bz2
lumina-c6582b1f4683e11da298248a193304dcd91b2797.zip
Update the new screensaver framework a bit, and add a replacement for the default "sample" screensaver: a "Fireflies" screensaver.
Diffstat (limited to 'src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h')
-rw-r--r--src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h b/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h
index 3b442281..8798577f 100644
--- a/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h
+++ b/src-qt5/core/lumina-desktop-unified/src-screensaver/animations/BaseAnimGroup.h
@@ -1,6 +1,6 @@
//===========================================
// Lumina-DE source code
-// Copyright (c) 2015, Ken Moore
+// Copyright (c) 2015-2017, Ken Moore
// Available under the 3-clause BSD license
// See the LICENSE file for full details
//===========================================
@@ -23,6 +23,7 @@ public:
BaseAnimGroup(QWidget *parent, QSettings *set){
canvas = parent;
settings = set;
+ canvas->setCursor( QCursor(Qt::BlankCursor) );
}
~BaseAnimGroup(){}
bgstack15