| 1930 | } |
| 1931 | |
| 1932 | void MainWindow::showEditorZoomLevelIndicator() |
| 1933 | { |
| 1934 | // Not sure if Scintilla's zoom level matches up to an exact percentage, but visibly this is close |
| 1935 | FadingIndicator::showText(currentEditor(), tr("Zoom: %1%").arg(zoomLevel * 10 + 100)); |
| 1936 | } |
| 1937 | |
| 1938 | void MainWindow::saveSettings() const |
| 1939 | { |
nothing calls this directly
no test coverage detected