This commit is contained in:
ItsLemmy
2025-10-05 17:32:15 -04:00
parent 2b83c12586
commit 67cd3d8f52
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ NIconButton {
colorFg: ScreenRecorderService.isRecording ? Color.mOnPrimary : Color.mOnSurface
colorBorder: Color.transparent
colorBorderHover: Color.transparent
function handleClick() {
if (!ScreenRecorderService.isAvailable) {
ToastService.showError(I18n.tr("toast.recording.not-installed"), I18n.tr("toast.recording.not-installed-desc"), 7000)
@@ -26,6 +26,6 @@ NIconButton {
}
ScreenRecorderService.toggleRecording()
}
onClicked: handleClick()
}