diff options
author | Joel Bodenmann <joel@unormal.org> | 2013-10-26 17:52:49 +0200 |
---|---|---|
committer | Joel Bodenmann <joel@unormal.org> | 2013-10-26 17:52:49 +0200 |
commit | 98e7a40205fd045898e6ca8f7b57199d9eb4a002 (patch) | |
tree | 578cc21458985097038cf401cd6635d735f5b186 /demos | |
parent | 41e43cfcd62a78b8a98b3452892e50ca5d07bc99 (diff) | |
download | uGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.tar.gz uGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.tar.bz2 uGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.zip |
fixed orientation stuff in widgets demo
Diffstat (limited to 'demos')
-rw-r--r-- | demos/modules/gwin/widgets/main.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/modules/gwin/widgets/main.c b/demos/modules/gwin/widgets/main.c index 0dec7275..dde955f3 100644 --- a/demos/modules/gwin/widgets/main.c +++ b/demos/modules/gwin/widgets/main.c @@ -262,10 +262,6 @@ int main(void) { // Initialize the display gfxInit(); - #if GDISP_NEED_CONTROL - gdispSetOrientation(GDISP_ROTATE_90); - #endif - // Set the widget defaults gwinSetDefaultFont(gdispOpenFont("*")); gwinSetDefaultStyle(&WhiteWidgetStyle, FALSE); @@ -276,6 +272,10 @@ int main(void) { gwinAttachMouse(0); #endif + #if GDISP_NEED_CONTROL + gdispSetOrientation(GDISP_ROTATE_90); + #endif + // Create the gwin windows/widgets createWidgets(); |