diff options
author | StapleButter <thetotalworm@gmail.com> | 2017-09-30 18:58:13 +0200 |
---|---|---|
committer | StapleButter <thetotalworm@gmail.com> | 2017-09-30 18:58:13 +0200 |
commit | acc23f47cc54e1b0fee67b2c3b56e10ddf47e486 (patch) | |
tree | d546ea10fd2f7cd0d67b37c63367b9320e4c243e /src/libui_sdl/libui/windows | |
parent | cb284fbe2bf90759d53262d636ff5ba201ad08c8 (diff) |
actually get the input dialog somewhere
Diffstat (limited to 'src/libui_sdl/libui/windows')
-rw-r--r-- | src/libui_sdl/libui/windows/area.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libui_sdl/libui/windows/area.cpp b/src/libui_sdl/libui/windows/area.cpp index ab69ff1..3257631 100644 --- a/src/libui_sdl/libui/windows/area.cpp +++ b/src/libui_sdl/libui/windows/area.cpp @@ -56,8 +56,8 @@ uiWindowsControlAllDefaults(uiArea) static void uiAreaMinimumSize(uiWindowsControl *c, int *width, int *height) { // TODO - *width = 0; - *height = 0; + *width = 1; + *height = 1; } ATOM registerAreaClass(HICON hDefaultIcon, HCURSOR hDefaultCursor) |