# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1322459367 0 # Node ID 20c6d0c50c94dd691aaa7d032fac6d45345f2838 # Parent 8ff5b05318fba112f4fa5d03a78d0b5641675c83 Need to make the tooltip rect the max possible control size.. otherwise it might get clipped. using 2000x2000 for now... should be good enough for most situations. diff -r 8ff5b05318fb -r 20c6d0c50c94 win/dw.c --- a/win/dw.c Sun Nov 27 22:31:28 2011 +0000 +++ b/win/dw.c Mon Nov 28 05:49:27 2011 +0000 @@ -3556,7 +3556,7 @@ ti.hwnd = handle; ti.hinst = DWInstance; ti.lpszText = text; - ti.rect.right = ti.rect.bottom = 500; + ti.rect.right = ti.rect.bottom = 2000; /* Associate the tooltip with the "tool" window. */ SendMessage(hwndTT, TTM_ADDTOOL, 0, (LPARAM) (LPTOOLINFO) &ti);