add screenshot location

This commit is contained in:
vaguesyntax
2025-11-01 15:55:46 +03:00
parent 0fabedb0c4
commit ace8802480
4 changed files with 42 additions and 4 deletions
@@ -86,11 +86,11 @@ ContentPage {
}
ContentSection {
icon: "screen_record"
title: Translation.tr("Screen Recording")
icon: "file_open"
title: Translation.tr("Save paths")
ContentSubsection {
title: Translation.tr("Save path") + " (example: /home/user/Videos)"
title: Translation.tr("Video save path")
MaterialTextArea {
Layout.fillWidth: true
placeholderText: Translation.tr("Path")
@@ -101,6 +101,19 @@ ContentPage {
}
}
}
ContentSubsection {
title: Translation.tr("Screenshot save path") + " (leave empty to just copy)"
MaterialTextArea {
Layout.fillWidth: true
placeholderText: Translation.tr("Path")
text: Config.options.screenSnip.savePath
wrapMode: TextEdit.Wrap
onTextChanged: {
Config.options.screenSnip.savePath = text;
}
}
}
}