From 9952006afc4f94ac38ed9554d9b8e1525ca10326 Mon Sep 17 00:00:00 2001 From: bean-factory <76696071+bean-factory@users.noreply.github.com> Date: Mon, 9 Feb 2026 22:28:32 +0530 Subject: [PATCH] rename bar ipc functions to avoid conflict --- Services/Control/IPCService.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/Control/IPCService.qml b/Services/Control/IPCService.qml index 1e06bb657..4bed4a1bc 100644 --- a/Services/Control/IPCService.qml +++ b/Services/Control/IPCService.qml @@ -27,10 +27,10 @@ Item { function toggle() { BarService.isVisible = !BarService.isVisible; } - function hide() { + function hideBar() { BarService.isVisible = false; } - function show() { + function showBar() { BarService.isVisible = true; } }