MCPcopy Create free account
hub / github.com/collin80/SavvyCAN / readSettings

Method readSettings

scriptingwindow.cpp:124–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124void 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
134void ScriptingWindow::writeSettings()
135{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected