This commit is contained in:
isUnknown 2025-01-07 16:54:08 +01:00
parent bff0f8eda3
commit cb1f842fc9
4 changed files with 53 additions and 14 deletions

View file

@ -10,6 +10,7 @@ export const useVirtualSampleStore = defineStore("virtual-sample", () => {
const activeTab = ref(step.files.dynamic ? "dynamic" : "static");
const currentFile = ref(null);
const isLoopAnimationEnabled = ref(false);
const isDownloadTriggered = ref(false);
watch(activeTab, () => (currentFile.value = null));
@ -19,5 +20,6 @@ export const useVirtualSampleStore = defineStore("virtual-sample", () => {
step,
isLoopAnimationEnabled,
isCompareModeEnabled,
isDownloadTriggered,
};
});