From ab3fea8cd7c71b2a2bbfdcd893fb7d196487dc03 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 6 May 2015 16:00:49 -0400 Subject: [PATCH] Added a blank page to the test program to test tab navigation on Windows and also as an extra background drawing check. --- test/main.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/main.c b/test/main.c index 6159f29f..61e86445 100644 --- a/test/main.c +++ b/test/main.c @@ -67,6 +67,8 @@ int main(int argc, char *argv[]) page2 = makePage2(); uiTabAppendPage(mainTab, "Page 2", uiControl(page2)); + uiTabAppendPage(mainTab, "Empty Page", uiControl(uiNewHorizontalBox())); + uiControlShow(uiControl(w)); uiMain(); printf("after uiMain()\n");