mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-07 12:12:39 +02:00
Load settings on start, missed during refactoring
This commit is contained in:
parent
37d5734f28
commit
14e0a8220b
1 changed files with 9 additions and 0 deletions
|
@ -437,6 +437,15 @@ int main(int argc, const char* argv[]) {
|
|||
ch.setEnabled(true);
|
||||
}
|
||||
|
||||
{
|
||||
Settings crashSettings;
|
||||
crashSettings.beginGroup("Crash");
|
||||
if (crashSettings.value("ReportingEnabled").toBool()) {
|
||||
ch.setEnabled(true);
|
||||
}
|
||||
crashSettings.endGroup();
|
||||
}
|
||||
|
||||
ch.setAnnotation("program", "interface");
|
||||
|
||||
const QString& applicationName = getInterfaceSharedMemoryName();
|
||||
|
|
Loading…
Reference in a new issue