Browse Source

fix(ui): by default, don't grab focus on new message

Fix #5284
reviewable/pr5315/r1
Anthony Bilinski 7 years ago
parent
commit
dac1582b72
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -207,7 +207,7 @@ void Settings::loadGlobal() @@ -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();

Loading…
Cancel
Save