mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 05:03:45 +08:00
parent
2d453a1a6c
commit
389ce60bc9
BIN
src-tauri/icons/win-tray-icon-tun.png
Normal file
BIN
src-tauri/icons/win-tray-icon-tun.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
@ -145,12 +145,16 @@ impl Tray {
|
|||||||
|
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
{
|
{
|
||||||
let indication_icon = if *system_proxy {
|
let mut indication_icon = if *system_proxy {
|
||||||
include_bytes!("../../icons/win-tray-icon-activated.png").to_vec()
|
include_bytes!("../../icons/win-tray-icon-activated.png").to_vec()
|
||||||
} else {
|
} else {
|
||||||
include_bytes!("../../icons/win-tray-icon.png").to_vec()
|
include_bytes!("../../icons/win-tray-icon.png").to_vec()
|
||||||
};
|
};
|
||||||
|
|
||||||
|
if *tun_mode {
|
||||||
|
indication_icon = include_bytes!("../../icons/win-tray-icon-tun.png").to_vec();
|
||||||
|
}
|
||||||
|
|
||||||
let _ = tray.set_icon(tauri::Icon::Raw(indication_icon));
|
let _ = tray.set_icon(tauri::Icon::Raw(indication_icon));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user