Fix delete action on KeyPress

This commit is contained in:
Aleh Khantsevich
2024-08-31 15:11:28 +02:00
parent b8ca3f8604
commit 07ac81583e

View File

@@ -120,7 +120,7 @@ namespace Wino.Controls.Advanced
{ {
args.Handled = true; args.Handled = true;
ItemDeletedCommand?.Execute((int)MailOperation.SoftDelete); ItemDeletedCommand?.Execute(MailOperation.SoftDelete);
} }
} }