Commit 9c0d46da authored by Kris Marsh's avatar Kris Marsh Committed by Alexandre Julliard

Fixed window height to show all data properly.

Cleaned up drives->advanced information visuals.
parent 4a8b0d4c
......@@ -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",
......
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment