feat: Add screen recording button and config toggle (#2219)

This commit is contained in:
end-4
2025-10-19 20:53:48 +02:00
committed by GitHub
3 changed files with 28 additions and 0 deletions
@@ -225,6 +225,17 @@ ContentPage {
}
}
}
ConfigRow {
uniform: true
ConfigSwitch {
buttonIcon: "videocam"
text: Translation.tr("Record")
checked: Config.options.bar.utilButtons.showScreenRecord
onCheckedChanged: {
Config.options.bar.utilButtons.showScreenRecord = checked;
}
}
}
}
ContentSection {