mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
tweaks in settings/config
This commit is contained in:
@@ -89,32 +89,25 @@ ContentPage {
|
||||
icon: "file_open"
|
||||
title: Translation.tr("Save paths")
|
||||
|
||||
ContentSubsection {
|
||||
title: Translation.tr("Video save path")
|
||||
MaterialTextArea {
|
||||
Layout.fillWidth: true
|
||||
placeholderText: Translation.tr("Path")
|
||||
text: Config.options.screenRecord.savePath
|
||||
wrapMode: TextEdit.Wrap
|
||||
onTextChanged: {
|
||||
Config.options.screenRecord.savePath = text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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;
|
||||
}
|
||||
MaterialTextArea {
|
||||
Layout.fillWidth: true
|
||||
placeholderText: Translation.tr("Video Recording Path")
|
||||
text: Config.options.screenRecord.savePath
|
||||
wrapMode: TextEdit.Wrap
|
||||
onTextChanged: {
|
||||
Config.options.screenRecord.savePath = text;
|
||||
}
|
||||
}
|
||||
|
||||
MaterialTextArea {
|
||||
Layout.fillWidth: true
|
||||
placeholderText: Translation.tr("Screenshot Path (leave empyt to just copy)")
|
||||
text: Config.options.screenSnip.savePath
|
||||
wrapMode: TextEdit.Wrap
|
||||
onTextChanged: {
|
||||
Config.options.screenSnip.savePath = text;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
ContentSection {
|
||||
|
||||
Reference in New Issue
Block a user