diff options
| author | Jeffrey Altman <jaltman@secure-endpoints.com> | 2007-04-13 20:42:08 +0000 |
|---|---|---|
| committer | Jeffrey Altman <jaltman@secure-endpoints.com> | 2007-04-13 20:42:08 +0000 |
| commit | 93eae184ce92197d3021904584cb531189614a04 (patch) | |
| tree | 0d3368d712a388e7e1fb6d0aa1d4b638f99caa83 /src/windows | |
| parent | 6efa87f25f92c4d29aea2eaa8292d800fc682384 (diff) | |
Add vertical scrollbars to realm fields in dialogs
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: new
component: windows
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19468 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/windows')
| -rw-r--r-- | src/windows/identity/plugins/krb5/krb5identpro.c | 4 |
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 834d94296..0072b967d 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,
|
