From: John Hodge Date: Mon, 18 Feb 2013 13:00:58 +0000 (+0800) Subject: Usermode/ATE - Smaller default window X-Git-Tag: rel0.15~563 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=6c5efc540fb5eafd45624e81a52bf9b0bf338946;p=tpg%2Facess2.git Usermode/ATE - Smaller default window --- diff --git a/Usermode/Applications/gui_ate_src/main.c b/Usermode/Applications/gui_ate_src/main.c index ae8593e6..3a929c2a 100644 --- a/Usermode/Applications/gui_ate_src/main.c +++ b/Usermode/Applications/gui_ate_src/main.c @@ -35,7 +35,7 @@ int main(int argc, char *argv[]) AxWin3_Connect(NULL); // --- Build up window - gMainWindow = AxWin3_Widget_CreateWindow(NULL, 700, 400, ELEFLAG_VERTICAL); + gMainWindow = AxWin3_Widget_CreateWindow(NULL, 500, 400, ELEFLAG_VERTICAL); AxWin3_SetWindowTitle(gMainWindow, "Acess Text Editor"); // TODO: Update title with other info gMainWindow_Root = AxWin3_Widget_GetRoot(gMainWindow);