From bd924431ecc294483db79403d763de6ea54039c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zolt=C3=A1n=20Papp?= Date: Wed, 17 Jun 2026 11:31:22 +0200 Subject: [PATCH] ui: move dock_other no-op comment inside function body --- client/ui/dock_other.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/client/ui/dock_other.go b/client/ui/dock_other.go index e28222d62..0ace89552 100644 --- a/client/ui/dock_other.go +++ b/client/ui/dock_other.go @@ -2,5 +2,6 @@ package main -// macOS-only; no-op on other operating systems -func initDockObserver() {} +func initDockObserver() { + // macOS-only; Linux and Windows taskbar entries already gate on window visibility natively. +}