diff options
author | Ken Moore <moorekou@gmail.com> | 2015-11-23 08:27:24 -0500 |
---|---|---|
committer | Ken Moore <moorekou@gmail.com> | 2015-11-23 08:27:24 -0500 |
commit | 39f546a870e33c5c418e07e4a762ee589cc92a52 (patch) | |
tree | 37b364309e4f59124ac3c92e8725e1a9a946d692 /lumina-config/PanelWidget.cpp | |
parent | Quick checkpoint for the window manager: NOT STABLE - crashes on window close... (diff) | |
download | lumina-39f546a870e33c5c418e07e4a762ee589cc92a52.tar.gz lumina-39f546a870e33c5c418e07e4a762ee589cc92a52.tar.bz2 lumina-39f546a870e33c5c418e07e4a762ee589cc92a52.zip |
Fix a typo in the backend variable name for custom panel colors.
Diffstat (limited to 'lumina-config/PanelWidget.cpp')
-rw-r--r-- | lumina-config/PanelWidget.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lumina-config/PanelWidget.cpp b/lumina-config/PanelWidget.cpp index 26c7d8e8..49b3d797 100644 --- a/lumina-config/PanelWidget.cpp +++ b/lumina-config/PanelWidget.cpp @@ -57,7 +57,7 @@ void PanelWidget::LoadSettings(QSettings *settings, int Dnum, int Pnum){ ui->spin_plength->setValue( settings->value( prefix+"lengthPercent",100).toInt() ); ui->spin_pxthick->setValue( settings->value( prefix+"height",30).toInt() ); ui->check_autohide->setChecked( settings->value(prefix+"hidepanel", false).toBool() ); - ui->group_customcolor->setChecked( settings->value(prefix+"customcolor",false).toBool() ); + ui->group_customcolor->setChecked( settings->value(prefix+"customColor",false).toBool() ); ui->label_color_sample->setWhatsThis( settings->value(prefix+"color","rgba(255,255,255,160)").toString()); ui->list_plugins->clear(); QStringList plugs = settings->value(prefix+"pluginlist",QStringList()).toStringList(); |