Add screen recording button and config toggle

This commit is contained in:
Cleboost
2025-10-16 22:02:00 +02:00
parent 89585f8121
commit 91955ef66c
3 changed files with 28 additions and 0 deletions
@@ -225,6 +225,17 @@ ContentPage {
}
}
}
ConfigRow {
uniform: true
ConfigSwitch {
buttonIcon: "videocam"
text: Translation.tr("Screen recording")
checked: Config.options.bar.utilButtons.showScreenRecord
onCheckedChanged: {
Config.options.bar.utilButtons.showScreenRecord = checked;
}
}
}
}
ContentSection {