Merge pull request #1756 from bean-factory/patch-3

rename bar ipc functions to avoid conflict
This commit is contained in:
Lemmy
2026-02-09 12:12:05 -05:00
committed by GitHub
+2 -2
View File
@@ -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;
}
}