Match macOS Dock behavior using the same idle/connected glyph assets. Co-authored-by: Cursor <cursoragent@cursor.com>
12 lines
265 B
Go
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 }
|