MCPcopy Create free account
hub / github.com/CE-Programming/CEmu / setUIBoundaries

Method setUIBoundaries

gui/qt/settings.cpp:1070–1077  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1068}
1069
1070void MainWindow::setUIBoundaries(bool state) {
1071 m_config->setValue(SETTING_WINDOW_SEPARATOR, state);
1072 if (state) {
1073 setStyleSheet(QStringLiteral("QMainWindow::separator{ width: 4px; height: 4px; }"));
1074 } else {
1075 setStyleSheet(QStringLiteral("QMainWindow::separator{ width: 0px; height: 0px; }"));
1076 }
1077}
1078
1079void MainWindow::recentSaveInfo() {
1080 QStringList paths;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected