diff options
author | Ken Moore <moorekou@gmail.com> | 2015-11-04 15:17:55 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-11-04 15:17:55 -0500 |
commit | 8b95f0279ddf0d35141ed5bf7aa348b2b761aebc (patch) | |
tree | c01e1d39518f150e02e4ffb35d915415c2947e1b /lumina-wm-INCOMPLETE/animations | |
parent | Tweak the text in the desktop plugin menu a bit. (diff) | |
download | lumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.tar.gz lumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.tar.bz2 lumina-8b95f0279ddf0d35141ed5bf7aa348b2b761aebc.zip |
Get the new lockscreen all setup and (somewhat) functional in the screensaver. Also setup the screensaver so that the "--test-ss" option makes it fully-functional even if the WM event handler is not installed for valid testing).
The *only* thing which is still broken is that PAM is allowing all passwords for the user to unlock the system (probably some kind of password cache for the current credentials?). Still need to find some way to register a "lock" with PAM so that it forces the validation of the user's login credentials again.
Diffstat (limited to 'lumina-wm-INCOMPLETE/animations')
-rw-r--r-- | lumina-wm-INCOMPLETE/animations/SampleAnimation.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-wm-INCOMPLETE/animations/SampleAnimation.h b/lumina-wm-INCOMPLETE/animations/SampleAnimation.h index 7b027ce7..e0f11ba5 100644 --- a/lumina-wm-INCOMPLETE/animations/SampleAnimation.h +++ b/lumina-wm-INCOMPLETE/animations/SampleAnimation.h @@ -19,10 +19,10 @@ private: public: SampleAnimation(QWidget *parent, QSettings *set) : BaseAnimGroup(parent, set){} - ~SampleAnimation(){} + ~SampleAnimation(){ this->stop(); delete ball; } void LoadAnimations(){ - qDebug() << "Loading Sample Animation"; + //qDebug() << "Loading Sample Animation"; ball = new QWidget(canvas); //This creates a red "ball" on the widget which is going to expand/contract in the center of the screen ball->setStyleSheet("background: qradialgradient(spread:pad, cx:0.5, cy:0.5, radius:0.5, fx:0.341, fy:0.796, stop:0.00531915 rgba(107, 10, 10, 255), stop:0.521277 rgba(170, 10, 10, 255), stop:0.957447 rgba(200, 0, 0, 255), stop:0.994681 rgba(0, 0, 0, 225), stop:1 rgba(255, 255, 255, 0));"); |