-
Notifications
You must be signed in to change notification settings - Fork 234
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
Fixed bug with editing by F2 & Enter in favorite tree #263
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -260,9 +260,9 @@ private void DeleteSelectedFavorites() | |
|
||
internal static bool AskIfRealyDelete(string target) | ||
{ | ||
string messsage = string.Format("Do your realy want to delete selected {0}?", target); | ||
string messsage = string.Format("Do you really want to delete selected {0}?", target); | ||
return MessageBox.Show(messsage, "Terminals - Delete", | ||
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes; | ||
MessageBoxButtons.YesNoCancel, MessageBoxIcon.Question) == DialogResult.Yes; | ||
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. Why YesNoCancel, if Cancel makes no sence here? 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. It is sensefull fix. Because of user can push fast key escape on keyboard to cancel. It is much more usefull way than push dialog button with mouse |
||
} | ||
|
||
private void PerformDelete() | ||
|
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.
Why this line is removed?