Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SYNERGY-881 System loses synchronisation between settings and configuration #6968

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -3,6 +3,7 @@ v1.13.2-snapshot
Bug fixes:
- #6953 | #6961 The system does not update server name in Server configuration
- #6966 macOS 10.13 missing build number
- #6968 System loses synchronisation between settings and configuration

Enhancements:
- #6954 Move language selection to advanced section
Expand Down
2 changes: 1 addition & 1 deletion src/gui/src/ServerConfig.cpp
Expand Up @@ -380,7 +380,7 @@ void ServerConfig::updateServerName()
for (auto& screen : screens()) {
if (screen.isServer()) {
screen.setName(m_pAppConfig->screenName());
screen.saveSettings(settings());
saveSettings();
break;
}
}
Expand Down