Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2021-11-14 22:57:01 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-11-14 22:57:01 +0300
commit48c2c10cfd77005d9eb77a2042c23e916a700c16 (patch)
tree9f0f0cf3592f7bab92e9a3646e75a5279d04f551 /UVtools.WPF/UserSettings.cs
parent956e235d17165a6bbc518ff8a7c62edceb7a6514 (diff)
Improvements on File -> Send to
- **File -> Send to -> Device** - (Add) Progress with the transfered megabyte(s) and allow to cancel the transfer - (Add) It will prompt for drive ejection [Configurable - On by default] [Windows only] (#340)
Diffstat (limited to 'UVtools.WPF/UserSettings.cs')
-rw-r--r--UVtools.WPF/UserSettings.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/UVtools.WPF/UserSettings.cs b/UVtools.WPF/UserSettings.cs
index 7e62c94..4933ec6 100644
--- a/UVtools.WPF/UserSettings.cs
+++ b/UVtools.WPF/UserSettings.cs
@@ -54,6 +54,7 @@ namespace UVtools.WPF
private bool _promptOverwriteFileSave = true;
private string _fileSaveNamePrefix;
private string _fileSaveNameSuffix = "_copy";
+ private bool _sendToPromptForRemovableDeviceEject = true;
private RangeObservableCollection<MappedDevice> _sendToCustomLocations = new();
@@ -175,6 +176,12 @@ namespace UVtools.WPF
set => RaiseAndSetIfChanged(ref _fileSaveNameSuffix, value);
}
+ public bool SendToPromptForRemovableDeviceEject
+ {
+ get => _sendToPromptForRemovableDeviceEject;
+ set => RaiseAndSetIfChanged(ref _sendToPromptForRemovableDeviceEject, value);
+ }
+
public RangeObservableCollection<MappedDevice> SendToCustomLocations
{
get => _sendToCustomLocations;