From c87f9f8468cc528e4caf5fe47f67903f75784a5b Mon Sep 17 00:00:00 2001 From: lucy Date: Mon, 19 Jan 2026 13:48:00 +0100 Subject: [PATCH] add toggle to generate colors or not --- modules/ipc/Ipc.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/ipc/Ipc.qml b/modules/ipc/Ipc.qml index db66799..c17b096 100644 --- a/modules/ipc/Ipc.qml +++ b/modules/ipc/Ipc.qml @@ -15,7 +15,10 @@ Item { } } function setFont(newFont: string): void { - Settings.config.font = newFont + Settings.config.font = newFont; + } + function gen(toggle: bool): void { + Settings.config.generateScheme = toggle; } } Process {