From 39f546a870e33c5c418e07e4a762ee589cc92a52 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Mon, 23 Nov 2015 08:27:24 -0500 Subject: Fix a typo in the backend variable name for custom panel colors. --- lumina-config/PanelWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lumina-config/PanelWidget.cpp') 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(); -- cgit