From 942d3be05962af0bb035f50d47dc22469db12c11 Mon Sep 17 00:00:00 2001 From: Danila Poyarkov Date: Wed, 4 Mar 2026 10:38:53 +0300 Subject: [PATCH] Add auto-save toggle to File menu MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Checkbox item in File > Auto-save to local file. Enabled by default. When disabled, the 3s debounced auto-save to the opened .fig file is skipped — user can still save manually with ⌘S. --- src/components/AppMenu.vue | 25 +++++++++++++++++++++++++ src/stores/editor.ts | 5 ++++- 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/src/components/AppMenu.vue b/src/components/AppMenu.vue index 89ac2307f..67d71f752 100644 --- a/src/components/AppMenu.vue +++ b/src/components/AppMenu.vue @@ -1,7 +1,9 @@