diff options
| author | Pietro Gagliardi <[email protected]> | 2015-04-07 14:13:42 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2015-04-07 14:13:42 -0400 |
| commit | 4a52806d70af810634eaf6e3760d3c7a945ff006 (patch) | |
| tree | aa424ea57f7b2b78ac2109c419d96961e13ca5a4 /new/test.c | |
| parent | 3c427ed799eb3a58f5d442e19e4f4cd6f844b79a (diff) | |
Fixed button showing on GTK+. GTK+ uiButton done!
Diffstat (limited to 'new/test.c')
| -rw-r--r-- | new/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,12 +29,12 @@ int main(void) w = uiNewWindow("Hello", 320, 240); uiWindowOnClosing(w, onClosing, NULL); - uiWindowShow(w); button = uiNewButton("Click Me"); uiButtonOnClicked(button, onClicked, NULL); uiWindowSetChild(w, button); + uiWindowShow(w); uiMain(); printf("after uiMain()\n"); return 0; |
