Fixed window height to show all data properly.

Cleaned up drives->advanced information visuals.
This commit is contained in:
Kris Marsh 2005-02-08 12:08:20 +00:00 committed by Alexandre Julliard
parent 4a8b0d4c5b
commit 9c0d46da47
2 changed files with 5 additions and 5 deletions

View file

@ -24,7 +24,7 @@
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
IDD_ABOUTCFG DIALOGEX 0, 0, 260, 250
IDD_ABOUTCFG DIALOGEX 0, 0, 260, 270
STYLE WS_CHILD
FONT 8, "MS Sans Serif"
BEGIN
@ -114,7 +114,7 @@ BEGIN
LTEXT "&Type:",IDC_STATIC_TYPE,15,138,21,10
COMBOBOX IDC_COMBO_TYPE,41,135,77,60,CBS_DROPDOWNLIST | WS_VSCROLL | WS_TABSTOP
LTEXT "Label and serial number",IDC_LABELSERIAL_STATIC,15,155,55,10
LTEXT "Label and serial number",IDC_LABELSERIAL_STATIC,15,155,95,10
PUSHBUTTON "&Show Advanced",IDC_BUTTON_SHOW_HIDE_ADVANCED,186,136,60,13
CONTROL "Autodetect &from Device:",IDC_RADIO_AUTODETECT,"Button",

View file

@ -492,9 +492,9 @@ static void get_etched_rect(HWND dialog, RECT *rect)
GetClientRect(dialog, rect);
/* these dimensions from the labelserial static in En.rc */
rect->top = 258;
rect->bottom = 258;
rect->left += 35;
rect->top = 265;
rect->bottom = 265;
rect->left += 25;
rect->right -= 25;
}