# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1303519056 0 # Node ID 4519a1d2525ee24c4836c6ccf966a1cf1ecdd35d # Parent 24b19b905f0481c6d845fb11e5a3be40104cc744 Reverting that last change... it makes resizing really nice but all sorts of other things screw up. Commentary: Why does windows suck so much for developing? Every other platform I am able to draw things nicely without jumping through hoops. Windows has all sorts of features that look like they should work but every single one of them has huge issues that make them non-starters. The only way I can make Windows work well is to draw everything myself. Unbelievable. diff -r 24b19b905f04 -r 4519a1d2525e win/dw.c --- a/win/dw.c Fri Apr 22 22:26:20 2011 +0000 +++ b/win/dw.c Sat Apr 23 00:37:36 2011 +0000 @@ -4457,7 +4457,7 @@ { HWND hwndframe; Box *newbox = calloc(sizeof(Box), 1); - ULONG flStyleEx = IS_XPPLUS ? WS_EX_COMPOSITED : 0; + ULONG flStyleEx = 0; newbox->pad = 0; newbox->type = DW_VERT;