DeliveryAncmtAdminWindow: Fix bug when pressing Enter in weight input
All checks were successful
Test / Run tests (push) Successful in 2m55s

This commit is contained in:
2024-08-30 21:33:58 +02:00
parent 21f68caf4c
commit e18bc58b6c

View File

@ -53,7 +53,7 @@ namespace Elwig.Windows {
WeightInput.Focus(); WeightInput.Focus();
WeightInput.SelectAll(); WeightInput.SelectAll();
} else if (ctrl == WeightInput) { } else if (ctrl == WeightInput) {
SaveButton_Click(null, null); ShortcutSave();
} }
} }