mirror of
https://github.com/clash-verge-rev/clash-verge-rev
synced 2025-05-05 06:43:44 +08:00
fix: ensure main window title is set correctly on macOS
This commit is contained in:
parent
04bdd48a2a
commit
56e6139c2b
@ -250,11 +250,12 @@ pub fn run() {
|
|||||||
AppHandleManager::global().init(app_handle.clone());
|
AppHandleManager::global().init(app_handle.clone());
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
{
|
{
|
||||||
let main_window = AppHandleManager::global()
|
if let Some(window) = AppHandleManager::global()
|
||||||
.get_handle()
|
.get_handle()
|
||||||
.get_webview_window("main")
|
.get_webview_window("main")
|
||||||
.unwrap();
|
{
|
||||||
let _ = main_window.set_title("Clash Verge");
|
let _ = window.set_title("Clash Verge");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#[cfg(target_os = "macos")]
|
#[cfg(target_os = "macos")]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user