@@ -18,7 +18,6 @@ use tauri_utils::{
1818 config:: { Csp , CspDirectiveSources } ,
1919} ;
2020
21- use crate :: resources:: ResourceTable ;
2221use crate :: {
2322 app:: {
2423 AppHandle , ChannelInterceptor , GlobalWebviewEventListener , GlobalWindowEventListener ,
@@ -27,8 +26,9 @@ use crate::{
2726 event:: { EmitArgs , Event , EventId , EventTarget , Listeners } ,
2827 ipc:: { Invoke , InvokeHandler , RuntimeAuthority } ,
2928 plugin:: PluginStore ,
29+ resources:: ResourceTable ,
3030 utils:: { config:: Config , PackageInfo } ,
31- Assets , Context , EventName , Pattern , Runtime , StateManager , Webview , Window ,
31+ Assets , Context , DebugAppIcon , EventName , Pattern , Runtime , StateManager , Webview , Window ,
3232} ;
3333
3434#[ cfg( desktop) ]
@@ -233,7 +233,7 @@ impl<R: Runtime> fmt::Debug for AppManager<R> {
233233 . field ( "plugins" , & self . plugins )
234234 . field ( "state" , & self . state )
235235 . field ( "config" , & self . config )
236- . field ( "app_icon" , & self . app_icon )
236+ . field ( "app_icon" , & DebugAppIcon ( & self . app_icon ) )
237237 . field ( "package_info" , & self . package_info )
238238 . field ( "pattern" , & self . pattern ) ;
239239
0 commit comments