Mercurial > mplayer.hg
changeset 34709:b74a8e55c632
Increase width of control for cache size in Win32 GUI.
author | ib |
---|---|
date | Sun, 04 Mar 2012 15:42:16 +0000 |
parents | c4c333e49d29 |
children | 749da4b0c32a |
files | gui/win32/preferences.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/gui/win32/preferences.c Sun Mar 04 15:38:45 2012 +0000 +++ b/gui/win32/preferences.c Sun Mar 04 15:42:16 2012 +0000 @@ -310,7 +310,7 @@ edit1 = CreateWindowEx(WS_EX_CLIENTEDGE, "edit", "cache", WS_CHILD | WS_VISIBLE | WS_DISABLED | ES_LEFT | ES_AUTOHSCROLL, - 105, 225, 40, 20, hwnd, + 105, 225, 60, 20, hwnd, (HMENU) ID_EDIT1, ((LPCREATESTRUCT) lParam) -> hInstance, NULL); @@ -319,7 +319,7 @@ updown1 = CreateUpDownControl(WS_CHILD | WS_VISIBLE | WS_DISABLED | UDS_SETBUDDYINT | UDS_ARROWKEYS | UDS_NOTHOUSANDS, - 145, 225, 20, 20, hwnd, + 165, 225, 20, 20, hwnd, ID_UPDOWN1, ((LPCREATESTRUCT) lParam) -> hInstance, (HWND)edit1, 0, 0, 0);