@@ -18,7 +18,6 @@ use tauri_utils::{
18
18
config:: { Csp , CspDirectiveSources } ,
19
19
} ;
20
20
21
- use crate :: resources:: ResourceTable ;
22
21
use crate :: {
23
22
app:: {
24
23
AppHandle , ChannelInterceptor , GlobalWebviewEventListener , GlobalWindowEventListener ,
@@ -27,8 +26,9 @@ use crate::{
27
26
event:: { EmitArgs , Event , EventId , EventTarget , Listeners } ,
28
27
ipc:: { Invoke , InvokeHandler , RuntimeAuthority } ,
29
28
plugin:: PluginStore ,
29
+ resources:: ResourceTable ,
30
30
utils:: { config:: Config , PackageInfo } ,
31
- Assets , Context , EventName , Pattern , Runtime , StateManager , Webview , Window ,
31
+ Assets , Context , DebugAppIcon , EventName , Pattern , Runtime , StateManager , Webview , Window ,
32
32
} ;
33
33
34
34
#[ cfg( desktop) ]
@@ -233,7 +233,7 @@ impl<R: Runtime> fmt::Debug for AppManager<R> {
233
233
. field ( "plugins" , & self . plugins )
234
234
. field ( "state" , & self . state )
235
235
. field ( "config" , & self . config )
236
- . field ( "app_icon" , & self . app_icon )
236
+ . field ( "app_icon" , & DebugAppIcon ( & self . app_icon ) )
237
237
. field ( "package_info" , & self . package_info )
238
238
. field ( "pattern" , & self . pattern ) ;
239
239
0 commit comments