aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2007-04-17 23:08:33 +0000
committerTom Yu <tlyu@mit.edu>2007-04-17 23:08:33 +0000
commitabc85e685c1961a6668fb54a3b288ae3cd5cfad7 (patch)
treef9dcbd6f3f8cebfa523a5d5559e1d3159478bc35 /src
parent70c966a68cbf3dc9d64b0d72cef64296bac77d71 (diff)
downloadkrb5-abc85e685c1961a6668fb54a3b288ae3cd5cfad7.zip
krb5-abc85e685c1961a6668fb54a3b288ae3cd5cfad7.tar.gz
krb5-abc85e685c1961a6668fb54a3b288ae3cd5cfad7.tar.bz2
pull up r19468 from trunk
r19468@cathode-dark-space: jaltman | 2007-04-13 16:42:08 -0400 ticket: new subject: Add vertical scrollbars to realm fields in dialogs component: windows tags: pullup The obtain new credentials dialog and the change password dialog provide a "Realm" combo-box. These controls were not configured to display a vertical scroll bar if there were more than five realms in the list. Version number remains 1.2.0.2 ticket: 5528 version_fixed: 1.6.1 git-svn-id: svn://anonsvn.mit.edu/krb5/branches/krb5-1-6@19482 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/windows/identity/plugins/krb5/krb5identpro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/windows/identity/plugins/krb5/krb5identpro.c b/src/windows/identity/plugins/krb5/krb5identpro.c
index 834d942..0072b96 100644
--- a/src/windows/identity/plugins/krb5/krb5identpro.c
+++ b/src/windows/identity/plugins/krb5/krb5identpro.c
@@ -461,7 +461,7 @@ ui_cb(khui_new_creds * nc,
(L"COMBOBOX",
L"",
CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_SORT |
- WS_CHILD | WS_VISIBLE | WS_TABSTOP,
+ WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL,
0, 0, 100, 100, /* bogus values */
hw_parent,
(HMENU) K5_NCID_UN,
@@ -502,7 +502,7 @@ ui_cb(khui_new_creds * nc,
(L"COMBOBOX",
L"",
CBS_DROPDOWN | CBS_AUTOHSCROLL | CBS_SORT |
- WS_CHILD | WS_VISIBLE | WS_TABSTOP,
+ WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL,
0, 0, 100, 100, /* bogus */
hw_parent,
(HMENU) K5_NCID_REALM,