diff options
| author | Ezekiel Gonzales <141341590+notsoeazy@users.noreply.github.com> | 2026-01-16 19:10:33 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-01-16 22:10:33 +1100 |
| commit | d2c06587f5321ccf12feedd08d84fa11b9a2ff68 (patch) | |
| tree | 6f286ef6feb38743236e6b82c30d08c468dabd7c /services/Recorder.qml | |
| parent | notifs: fix image caching (diff) | |
| download | caelestia-shell-d2c06587f5321ccf12feedd08d84fa11b9a2ff68.tar.gz caelestia-shell-d2c06587f5321ccf12feedd08d84fa11b9a2ff68.tar.bz2 caelestia-shell-d2c06587f5321ccf12feedd08d84fa11b9a2ff68.zip | |
utilities: fix fullscreen record (#1085)
Diffstat (limited to '')
| -rw-r--r-- | services/Recorder.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/Recorder.qml b/services/Recorder.qml index e4ce6a8..6eddce9 100644 --- a/services/Recorder.qml +++ b/services/Recorder.qml @@ -15,7 +15,7 @@ Singleton { property bool needsStop property bool needsPause - function start(extraArgs: list<string>): void { + function start(extraArgs = []): void { needsStart = true; startArgs = extraArgs; checkProc.running = true; |