summaryrefslogtreecommitdiffstats
path: root/src/gui
diff options
context:
space:
mode:
authorLubos Dolezel <lubos@dolezel.info>2015-06-04 13:45:33 +0200
committerLubos Dolezel <lubos@dolezel.info>2015-06-04 13:45:33 +0200
commit60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f (patch)
tree3f72ba99b6f6f2af2ae264616f3ac4040d28c1ee /src/gui
parent004fb9b00fe7e1e5c7c3febe4401cac46a9521a2 (diff)
downloadtwinkle-60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f.tar
twinkle-60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f.tar.gz
twinkle-60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f.tar.lz
twinkle-60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f.tar.xz
twinkle-60c4f9eb8e42a2f1581d8a79dbae6245e405ae3f.zip
Fix missing checkbox after new profile added in selectprofileform
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/selectprofileform.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gui/selectprofileform.cpp b/src/gui/selectprofileform.cpp
index e900dcc..0049dbe 100644
--- a/src/gui/selectprofileform.cpp
+++ b/src/gui/selectprofileform.cpp
@@ -351,6 +351,7 @@ void SelectProfileForm::newProfileCreated()
profileListView);
item->setFlags(item->flags() | Qt::ItemIsUserCheckable);
+ item->setCheckState(Qt::Unchecked);
// Make the new profile the selected profile
// Do not change this without changing the exec method.