Skip to content
This repository has been archived by the owner on Feb 12, 2023. It is now read-only.

Commit

Permalink
fix(ui): by default, don't grab focus on new message
Browse files Browse the repository at this point in the history
Fix #5284
  • Loading branch information
anthonybilinski committed Sep 6, 2018
1 parent 6052612 commit dac1582
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/persistence/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void Settings::loadGlobal()
s.beginGroup("GUI");
{
showWindow = s.value("showWindow", true).toBool();
showInFront = s.value("showInFront", true).toBool();
showInFront = s.value("showInFront", false).toBool();
notify = s.value("notify", true).toBool();
groupAlwaysNotify = s.value("groupAlwaysNotify", true).toBool();
groupchatPosition = s.value("groupchatPosition", true).toBool();
Expand Down

0 comments on commit dac1582

Please sign in to comment.