From 2b80e65818cb3122862de0ffdc72623dab435b83 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 14 Aug 2007 14:57:55 +0000 Subject: [PATCH] updated for version 7.1-070 --- src/gui_w32.c | 4 ++++ src/version.c | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/gui_w32.c b/src/gui_w32.c index d6aa1a503..092d8d516 100644 --- a/src/gui_w32.c +++ b/src/gui_w32.c @@ -2894,6 +2894,10 @@ dialog_callback( (void)SetFocus(hwnd); if (dialog_default_button > IDCANCEL) (void)SetFocus(GetDlgItem(hwnd, dialog_default_button)); + else + /* We don't have a default, set focus on another element of the + * dialog window, probably the icon */ + (void)SetFocus(GetDlgItem(hwnd, DLG_NONBUTTON_CONTROL)); return FALSE; } diff --git a/src/version.c b/src/version.c index fce1bcd28..999621cdd 100644 --- a/src/version.c +++ b/src/version.c @@ -666,6 +666,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 70, /**/ 69, /**/ -- 2.50.1