| 122 | } |
| 123 | |
| 124 | void ScriptingWindow::readSettings() |
| 125 | { |
| 126 | QSettings settings; |
| 127 | if (settings.value("Main/SaveRestorePositions", false).toBool()) |
| 128 | { |
| 129 | resize(settings.value("ScriptingWindow/WindowSize", QSize(860, 650)).toSize()); |
| 130 | move(settings.value("ScriptingWindow/WindowPos", QPoint(100, 100)).toPoint()); |
| 131 | } |
| 132 | } |
| 133 | |
| 134 | void ScriptingWindow::writeSettings() |
| 135 | { |
nothing calls this directly
no outgoing calls
no test coverage detected