File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -1738,9 +1738,13 @@ await Task.Run(async () =>
17381738
17391739 await OrderFilesAndFoldersAsync ( ) ;
17401740 await ApplyFilesAndFoldersChangesAsync ( ) ;
1741- await dispatcherQueue . EnqueueOrInvokeAsync ( CheckForSolutionFile , Microsoft . UI . Dispatching . DispatcherQueuePriority . Low ) ;
1742- await dispatcherQueue . EnqueueOrInvokeAsync ( GetDesktopIniFileData , Microsoft . UI . Dispatching . DispatcherQueuePriority . Low ) ;
1743- await dispatcherQueue . EnqueueOrInvokeAsync ( CheckForBackgroundImage , Microsoft . UI . Dispatching . DispatcherQueuePriority . Low ) ;
1741+ await dispatcherQueue . EnqueueOrInvokeAsync ( ( ) =>
1742+ {
1743+ CheckForSolutionFile ( ) ;
1744+ GetDesktopIniFileData ( ) ;
1745+ CheckForBackgroundImage ( ) ;
1746+ } ,
1747+ Microsoft . UI . Dispatching . DispatcherQueuePriority . Low ) ;
17441748 } ) ;
17451749
17461750 rootFolder ??= await FilesystemTasks . Wrap ( ( ) => StorageFileExtensions . DangerousGetFolderFromPathAsync ( path ) ) ;
You can’t perform that action at this time.
0 commit comments