mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change delete confirmation dialog from Yes/No to OK/Cancel
This commit is contained in:
parent
d159adb849
commit
abef617799
1 changed files with 2 additions and 2 deletions
|
|
@ -200,9 +200,9 @@ namespace Flow.Launcher.Plugin.Explorer
|
|||
if (Context.API.ShowMsgBox(
|
||||
string.Format(Context.API.GetTranslation("plugin_explorer_delete_folder_link"), record.FullPath),
|
||||
Context.API.GetTranslation("plugin_explorer_deletefilefolder"),
|
||||
MessageBoxButton.YesNo,
|
||||
MessageBoxButton.OKCancel,
|
||||
MessageBoxImage.Warning)
|
||||
== MessageBoxResult.No)
|
||||
== MessageBoxResult.Cancel)
|
||||
return false;
|
||||
|
||||
if (isFile)
|
||||
|
|
|
|||
Loading…
Reference in a new issue