diff options
author | inmarket <andrewh@inmarket.com.au> | 2013-10-24 16:52:17 +1000 |
---|---|---|
committer | inmarket <andrewh@inmarket.com.au> | 2013-10-24 16:56:46 +1000 |
commit | c08c3b57a44e79e3901d60600add486851b75008 (patch) | |
tree | 4ab91b790c9e0ed2f668d63cd6e7309ccc96cf4a | |
parent | d7b9fc55f59ecb5890748161c68f1a8bbc8179b6 (diff) | |
download | uGFX-c08c3b57a44e79e3901d60600add486851b75008.tar.gz uGFX-c08c3b57a44e79e3901d60600add486851b75008.tar.bz2 uGFX-c08c3b57a44e79e3901d60600add486851b75008.zip |
Add initial orientation to the widgets demo.
-rw-r--r-- | demos/modules/gwin/widgets/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/demos/modules/gwin/widgets/main.c b/demos/modules/gwin/widgets/main.c index 31b65a65..0dec7275 100644 --- a/demos/modules/gwin/widgets/main.c +++ b/demos/modules/gwin/widgets/main.c @@ -262,6 +262,10 @@ 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); |