Skip to content

Commit

Permalink
Merge pull request #2381 from Miepee/patch-3
Browse files Browse the repository at this point in the history
Return Ok on Gtk.ResponseType.Acept instead of Ignore
  • Loading branch information
cwensley authored Jan 22, 2023
2 parents f573f25 + 05ad99e commit 5327ad8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Eto.Gtk/GtkConversions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ public static DialogResult ToEto(this Gtk.ResponseType result)
case Gtk.ResponseType.Reject:
return DialogResult.Abort;
case Gtk.ResponseType.Accept:
return DialogResult.Ignore;
case Gtk.ResponseType.Ok:
return DialogResult.Ok;
case Gtk.ResponseType.Cancel:
Expand Down

0 comments on commit 5327ad8

Please sign in to comment.