Skip to content

Commit

Permalink
fix: linux not change icon
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzgydi committed May 28, 2023
1 parent f5edca9 commit 6e391df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ windows-sys = { version = "0.48", features = ["Win32_System_LibraryLoader", "Win
features = ["global-shortcut-all", "icon-png", "process-all", "shell-all", "system-tray", "updater", "window-all"]

[target.'cfg(linux)'.dependencies.tauri]
features = ["global-shortcut-all", "icon-png", "process-all", "shell-all", "system-tray", "updater", "window-all", "native-tls-vendored", "reqwest-native-tls-vendored"]
features = ["global-shortcut-all", "process-all", "shell-all", "system-tray", "updater", "window-all", "native-tls-vendored", "reqwest-native-tls-vendored"]


[features]
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/core/tray.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl Tray {
let system_proxy = verge.enable_system_proxy.as_ref().unwrap_or(&false);
let tun_mode = verge.enable_tun_mode.as_ref().unwrap_or(&false);

#[cfg(not(target_os = "macos"))]
#[cfg(target_os = "windows")]
{
let indication_icon = if *system_proxy {
include_bytes!("../../icons/tray-icon-activated.png").to_vec()
Expand Down

0 comments on commit 6e391df

Please sign in to comment.