aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@unormal.org>2013-10-26 17:52:49 +0200
committerJoel Bodenmann <joel@unormal.org>2013-10-26 17:52:49 +0200
commit98e7a40205fd045898e6ca8f7b57199d9eb4a002 (patch)
tree578cc21458985097038cf401cd6635d735f5b186
parent41e43cfcd62a78b8a98b3452892e50ca5d07bc99 (diff)
downloaduGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.tar.gz
uGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.tar.bz2
uGFX-98e7a40205fd045898e6ca8f7b57199d9eb4a002.zip
fixed orientation stuff in widgets demo
-rw-r--r--demos/modules/gwin/widgets/main.c8
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();