mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-25 16:19:07 +02:00
Refactor UI --------- Co-authored-by: Eduard Gert <kontakt@eduardgert.de> Co-authored-by: braginini <bangvalo@gmail.com> Co-authored-by: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: riccardom <riccardomanfrin@gmail.com>
25 lines
655 B
Go
25 lines
655 B
Go
//go:build windows
|
|
|
|
package main
|
|
|
|
import _ "embed"
|
|
|
|
// SetMenuItemBitmaps sizes the HBITMAP to SM_CXMENUCHECK/SM_CYMENUCHECK (16x16
|
|
// at 100% DPI); larger bitmaps overflow the row, hence this Windows-only set
|
|
// downscaled from the 24x24 originals.
|
|
|
|
//go:embed assets/netbird-menu-dot-connected-16.png
|
|
var iconMenuDotConnected []byte
|
|
|
|
//go:embed assets/netbird-menu-dot-connecting-16.png
|
|
var iconMenuDotConnecting []byte
|
|
|
|
//go:embed assets/netbird-menu-dot-error-16.png
|
|
var iconMenuDotError []byte
|
|
|
|
//go:embed assets/netbird-menu-dot-idle-16.png
|
|
var iconMenuDotIdle []byte
|
|
|
|
//go:embed assets/netbird-menu-dot-offline-16.png
|
|
var iconMenuDotOffline []byte
|