initial commit of record-location

This commit is contained in:
vaguesyntax
2025-11-01 14:38:16 +03:00
parent bf87ed69ce
commit e567f06cef
3 changed files with 85 additions and 48 deletions
@@ -85,6 +85,25 @@ ContentPage {
}
ContentSection {
icon: "screen_record"
title: Translation.tr("Screen Recording")
ContentSubsection {
title: Translation.tr("Save path") + " (example: /home/user/Videos)"
MaterialTextArea {
Layout.fillWidth: true
placeholderText: Translation.tr("Path")
text: Config.options.screenRecord.savePath
wrapMode: TextEdit.Wrap
onTextChanged: {
Config.options.screenRecord.savePath = text;
}
}
}
}
ContentSection {
icon: "search"
title: Translation.tr("Search")