mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 12:28:02 +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);
|
ch.setEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
{
|
||||||
|
Settings crashSettings;
|
||||||
|
crashSettings.beginGroup("Crash");
|
||||||
|
if (crashSettings.value("ReportingEnabled").toBool()) {
|
||||||
|
ch.setEnabled(true);
|
||||||
|
}
|
||||||
|
crashSettings.endGroup();
|
||||||
|
}
|
||||||
|
|
||||||
ch.setAnnotation("program", "interface");
|
ch.setAnnotation("program", "interface");
|
||||||
|
|
||||||
const QString& applicationName = getInterfaceSharedMemoryName();
|
const QString& applicationName = getInterfaceSharedMemoryName();
|
||||||
|
|
Loading…
Reference in a new issue