[setup - the official Cygwin setup program] branch master, updated. release_2.882-15-gc385393

kbrown@sourceware.org kbrown@sourceware.org
Tue Dec 5 15:51:00 GMT 2017




https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=c3853939020aeb5bfc5b4995cd604da4ce3f72cc

commit c3853939020aeb5bfc5b4995cd604da4ce3f72cc
Author: Ken Brown <kbrown@cornell.edu>
Date:   Mon Dec 4 10:53:55 2017 -0500

    Make Enter in the user URL box cause ADD instead of NEXT


Diff:
---
 site.cc |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/site.cc b/site.cc
index 230d82c..a945d28 100644
--- a/site.cc
+++ b/site.cc
@@ -679,7 +679,9 @@ bool SitePage::OnMessageCmd (int id, HWND hwndctl, UINT code)
     {
     case IDC_EDIT_USER_URL:
       {
-	// FIXME: Make Enter here cause an ADD, not a NEXT.
+	// Set the default pushbutton to ADD if the user is entering text.
+	if (code == EN_CHANGE)
+	  SendMessage (GetHWND (), DM_SETDEFID, (WPARAM) IDC_BUTTON_ADD_URL, 0);
 	break;
       }
     case IDC_URL_LIST:



More information about the Cygwin-apps-cvs mailing list