1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

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

Fix #5284
This commit is contained in:
Anthony Bilinski 2018-08-28 23:16:53 -07:00
parent 6052612250
commit dac1582b72
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C

View File

@ -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();