Add open printer tray to tools dropdown

This commit is contained in:
Jasmine Iwanek
2025-08-12 22:48:22 -04:00
parent 59e221c4cb
commit 6068ba6aef
3 changed files with 15 additions and 0 deletions

View File

@@ -2270,6 +2270,13 @@ MainWindow::on_actionOpen_screenshots_folder_triggered()
QDesktopServices::openUrl(QUrl(QString("file:///") + usr_path + QString("/screenshots/")));
}
void
MainWindow::on_actionOpen_printer_tray_triggered()
{
static_cast<void>(QDir(QString(usr_path) + QString("/printer/")).mkpath("."));
QDesktopServices::openUrl(QUrl(QString("file:///") + usr_path + QString("/printer/")));
}
void
MainWindow::on_actionApply_fullscreen_stretch_mode_when_maximized_triggered(bool checked)
{