ctrl + c & ctrl + s shortcuts + screenshot destination dir env var
C++ / fmt (pull_request) Successful in 4s
JS/TS / fmt (pull_request) Successful in 16s
JS/TS / lint (pull_request) Successful in 17s
Python / fmt (pull_request) Successful in 32s
Python / lint (pull_request) Successful in 32s
Python / test (pull_request) Successful in 1m0s
C++ / build (pull_request) Successful in 1m35s
Python / typecheck (pull_request) Failing after 1m12s
Rust / fmt (pull_request) Successful in 38s
Rust / build (pull_request) Successful in 1m34s
Rust / clippy (pull_request) Successful in 1m28s
Python / buildcheck (pull_request) Successful in 2m35s
C++ / clang-tidy (pull_request) Successful in 3m23s

This commit is contained in:
2026-08-11 18:57:36 +02:00
parent ad5fda2718
commit 06fb202e36
5 changed files with 33 additions and 5 deletions
+2 -2
View File
@@ -15,9 +15,9 @@ Singleton {
category: "appearance"
},
{
name: qsTr("Screenshot"),
name: qsTr("Screenshots"),
icon: "screenshot_region",
description: qsTr("Set screenshot effects"),
description: qsTr("Set screenshot options and effects"),
category: "appearance"
},
+16 -1
View File
@@ -12,7 +12,7 @@ import qs.Modules.Settings.Common
PageBase {
id: root
title: qsTr("Screenshot effects")
title: qsTr("Screenshots")
ColumnLayout {
anchors.horizontalCenter: parent.horizontalCenter
@@ -22,6 +22,21 @@ PageBase {
SectionHeader {
first: true
text: qsTr("Behavior")
}
ToggleRow {
checked: Config.screenshot.saveOnCopy
first: true
last: true
settingAnchor: "screenshot-save-on-copy"
subtext: qsTr("Also save screenshot to disk when copying to clipboard")
text: qsTr("Save on copy")
onToggled: Config.screenshot.saveOnCopy = checked
}
SectionHeader {
text: qsTr("Effects")
}