| 1068 | } |
| 1069 | |
| 1070 | void 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 | |
| 1079 | void MainWindow::recentSaveInfo() { |
| 1080 | QStringList paths; |
nothing calls this directly
no outgoing calls
no test coverage detected