diff options
author | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-30 00:41:43 +1000 |
---|---|---|
committer | Andrew Hannam <andrewh@inmarket.com.au> | 2012-11-30 00:41:43 +1000 |
commit | e741d6045b16af2143fb325ab416992a8c0c8fd5 (patch) | |
tree | 6bb46d3ae377fac15772466a5ec43e4f1f97b5d8 /src/gwin.c | |
parent | bc0ce072984b89a097b0d8de35422452588fac56 (diff) | |
download | uGFX-e741d6045b16af2143fb325ab416992a8c0c8fd5.tar.gz uGFX-e741d6045b16af2143fb325ab416992a8c0c8fd5.tar.bz2 uGFX-e741d6045b16af2143fb325ab416992a8c0c8fd5.zip |
GWIN Console Clear Fix
When a GWIN Console is cleared, set the cursor back to the top left
corner.
Diffstat (limited to 'src/gwin.c')
-rw-r--r-- | src/gwin.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -152,6 +152,13 @@ void gwinClear(GHandle gh) { gdispSetClip(gh->x, gh->y, gh->width, gh->height);
#endif
gdispFillArea(gh->x, gh->y, gh->width, gh->height, gh->bgcolor);
+
+ #if GWIN_NEED_CONSOLE
+ if (gh->type == GW_CONSOLE) {
+ ((GConsoleObject *)gh)->cx = 0;
+ ((GConsoleObject *)gh)->cy = 0;
+ }
+ #endif
}
/**
|