diff options
author | Ken Moore <moorekou@gmail.com> | 2015-09-16 12:02:05 -0400 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-09-16 12:02:05 -0400 |
commit | 2776381a857809f114aa7cfc0a51089c6e0f6afa (patch) | |
tree | 7792e4d5fa69add65900165a30ccec7d161d0de5 /lumina-desktop/panel-plugins | |
parent | Fix up all the window activation detection/management within the lumina sessi... (diff) | |
download | lumina-2776381a857809f114aa7cfc0a51089c6e0f6afa.tar.gz lumina-2776381a857809f114aa7cfc0a51089c6e0f6afa.tar.bz2 lumina-2776381a857809f114aa7cfc0a51089c6e0f6afa.zip |
Oops, needed to make the entire suspend frame invisible, not just the button.
Diffstat (limited to 'lumina-desktop/panel-plugins')
-rw-r--r-- | lumina-desktop/panel-plugins/systemstart/StartMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp index cc8a55e3..6c39c835 100644 --- a/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp +++ b/lumina-desktop/panel-plugins/systemstart/StartMenu.cpp @@ -287,7 +287,7 @@ void StartMenu::on_stackedWidget_currentChanged(int val){ ui->tool_shutdown->setEnabled(!updating); ui->label_updating->setVisible(updating); //to let the user know *why* they can't shutdown/restart right now } - ui->tool_suspend->setVisible( LOS::systemCanSuspend() ); + ui->frame_leave_suspend->setVisible( LOS::systemCanSuspend() ); } } |