Files
navi/internal/dockicon/dockicon_other.go
T
M4andCursor fed1ace33e
ci / test (macos-latest) (push) Canceled after 0s
ci / test (ubuntu-latest) (push) Canceled after 0s
ci / test (windows-latest) (push) Canceled after 0s
Release 3.8.2.7: Windows taskbar/tray sea-wave icon when connected.
Match macOS Dock behavior using the same idle/connected glyph assets.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-01 16:45:55 +03:00

12 lines
265 B
Go

//go:build !darwin && !windows
package dockicon
import "unsafe"
// SetConnected is a no-op on platforms without a Dock/taskbar icon swap.
func SetConnected(connected bool) {}
// BindWindow is a no-op outside Windows.
func BindWindow(h unsafe.Pointer) { _ = h }