aboutsummaryrefslogtreecommitdiff
path: root/lumina-config
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-11-23 14:20:13 -0500
committerKen Moore <moorekou@gmail.com>2015-11-23 14:20:13 -0500
commitdadef0f8c30c1603805f7f232add16b0c455d3b0 (patch)
tree355f4124ab74a192e22799b74f5328eacd153f2c /lumina-config
parentChange the desktop icon text color to white by default: This just looks a lot... (diff)
parentFix up the sorting of the favorites items in the start menu. Now the applicat... (diff)
downloadlumina-dadef0f8c30c1603805f7f232add16b0c455d3b0.tar.gz
lumina-dadef0f8c30c1603805f7f232add16b0c455d3b0.tar.bz2
lumina-dadef0f8c30c1603805f7f232add16b0c455d3b0.zip
Merge branch 'master' of github.com:pcbsd/lumina
Diffstat (limited to 'lumina-config')
-rw-r--r--lumina-config/PanelWidget.cpp2
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();
bgstack15