This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.

The branch, next has been updated
       via  49e94f97479fbd686f3987571434b2ea57e30e43 (commit)
       via  16e92d89aa5eba6cd7f62158aa614d63d0150576 (commit)
      from  fc437783f990c03519821ccfb655cd637db003dc (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/49e94f97479fbd686f3987571434b2ea57e30e43

commit 49e94f97479fbd686f3987571434b2ea57e30e43
Author: Amadeusz Sławiński <am...@asmblr.net>
Date:   Mon Jul 27 18:19:52 2015 +0200

    Allow using numpad Enter key in dialogs for confirmation
    
    Signed-off-by: Amadeusz Sławiński <am...@asmblr.net>

diff --git a/WINGs/wtextfield.c b/WINGs/wtextfield.c
index f72102d..bac16bd 100644
--- a/WINGs/wtextfield.c
+++ b/WINGs/wtextfield.c
@@ -1000,6 +1000,9 @@ static void handleTextFieldKeyPress(TextField * tPtr, 
XEvent * event)
                }
                break;
 
+#ifdef XK_KP_Enter
+       case XK_KP_Enter:
+#endif
        case XK_Return:
                if (!modified) {
                        data = (void *)WMReturnTextMovement;

http://repo.or.cz/w/wmaker-crm.git/commit/16e92d89aa5eba6cd7f62158aa614d63d0150576

commit 16e92d89aa5eba6cd7f62158aa614d63d0150576
Author: Amadeusz Sławiński <am...@asmblr.net>
Date:   Mon Jul 27 18:19:51 2015 +0200

    Allow using keypad Enter to commit move/resize
    
    Signed-off-by: Amadeusz Sławiński <am...@asmblr.net>

diff --git a/src/moveres.c b/src/moveres.c
index e8883c8..5472ceb 100644
--- a/src/moveres.c
+++ b/src/moveres.c
@@ -1445,6 +1445,9 @@ int wKeyboardMoveResizeWindow(WWindow * wwin)
                                keysym = XLookupKeysym(&event.xkey, 0);
                                switch (keysym) {
                                case XK_Return:
+#ifdef XK_KP_Enter
+                               case XK_KP_Enter:
+#endif
                                        done = 2;
                                        break;
                                case XK_Escape:

-----------------------------------------------------------------------

Summary of changes:
 WINGs/wtextfield.c | 3 +++
 src/moveres.c      | 3 +++
 2 files changed, 6 insertions(+)


repo.or.cz automatic notification. Contact project admin crma...@gmail.com
if you want to unsubscribe, or site admin ad...@repo.or.cz if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to