-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Feature: Added Robocopy Multithreaded support #18742
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 19 commits
f25b39e
3b4bc2e
e504f89
efc459c
6c448a6
7808c6c
248c65f
985a8c8
5b86fd0
93702e0
1ce4c41
37885e3
427d1bb
164f954
f2d6c9d
b566a99
c9f59cb
15aa51c
93beac1
62fc4d8
945041b
7c81658
a84bedc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -202,8 +202,10 @@ public StatusCenterItem( | |
| SpeedGraphValues = []; | ||
| CancelCommand = new RelayCommand(ExecuteCancelCommand); | ||
| Message = Strings.DiscoveringItems.GetLocalizedResource(); | ||
| Source = source; | ||
| Destination = destination; | ||
| // Status text only uses the first path. Retaining every path keeps large completed | ||
| // operations and their source storage objects alive for the lifetime of the card. | ||
| Source = source?.Take(1).ToArray(); | ||
| Destination = destination?.Take(1).ToArray(); | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No changes needed here, but I wonder whether we actually need
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They are used in src/Files.App/Utils/StatusCenter/StatusCenterHelper.cs:624-640 and are used to build the Status Center card, I have converted it to arrays. |
||
|
|
||
| // Get the graph color | ||
| if (App.Current.Resources["App.Theme.FillColorAttentionBrush"] is not SolidColorBrush accentBrush) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ToArray