diff options
author | Ken Moore <ken@pcbsd.org> | 2015-01-19 09:45:41 -0500 |
---|---|---|
committer | Ken Moore <ken@pcbsd.org> | 2015-01-19 09:45:41 -0500 |
commit | 11200604f5448bb78cbf717f910ee474052e46cf (patch) | |
tree | 4b508e504ec529ff706780bc76b89506c8ea65b4 /lumina-desktop/panel-plugins/userbutton/LUserButton.h | |
parent | Oops, missed resetting one of the lock flags in the desktop. (diff) | |
download | lumina-11200604f5448bb78cbf717f910ee474052e46cf.tar.gz lumina-11200604f5448bb78cbf717f910ee474052e46cf.tar.bz2 lumina-11200604f5448bb78cbf717f910ee474052e46cf.zip |
Update the user button to recognize the existance of a customized user icon for PCDM and use that for the icon instead (~/.loginIcon.png)
Diffstat (limited to 'lumina-desktop/panel-plugins/userbutton/LUserButton.h')
-rw-r--r-- | lumina-desktop/panel-plugins/userbutton/LUserButton.h | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/lumina-desktop/panel-plugins/userbutton/LUserButton.h b/lumina-desktop/panel-plugins/userbutton/LUserButton.h index e6a1830d..4d5f59b4 100644 --- a/lumina-desktop/panel-plugins/userbutton/LUserButton.h +++ b/lumina-desktop/panel-plugins/userbutton/LUserButton.h @@ -41,8 +41,8 @@ private: UserWidget *usermenu; QToolButton *button; + void updateButtonVisuals(); - private slots: void openMenu(); void closeMenu(); @@ -56,8 +56,16 @@ public slots: this->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Preferred); button->setIconSize( QSize(this->width(), this->width()) ); } - button->setIcon( LXDG::findIcon("user-identity", ":/images/default-user.png") ); //force icon refresh this->layout()->update(); + updateButtonVisuals(); + } + + void LocaleChange(){ + updateButtonVisuals(); + } + + void ThemeChange(){ + updateButtonVisuals(); } }; |