diff options
| author | Robert Bieber <robby@bieberphoto.com> | 2010-07-07 08:41:36 +0000 |
|---|---|---|
| committer | Robert Bieber <robby@bieberphoto.com> | 2010-07-07 08:41:36 +0000 |
| commit | 6f06793f58f520ec7d44683f6447c0b540a265b3 (patch) | |
| tree | 94b76580cfc13903a55c10dc92318551eebf9788 /utils/themeeditor/graphics/rbviewport.h | |
| parent | 88145656fb9b3276893e617b21bc590bc49fe96a (diff) | |
| download | rockbox-6f06793f58f520ec7d44683f6447c0b540a265b3.zip rockbox-6f06793f58f520ec7d44683f6447c0b540a265b3.tar.gz rockbox-6f06793f58f520ec7d44683f6447c0b540a265b3.tar.bz2 rockbox-6f06793f58f520ec7d44683f6447c0b540a265b3.tar.xz | |
Theme Editor: Fixed rendering bug that caused text in sublines not to appear, implemented a global font cache
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27331 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/graphics/rbviewport.h')
| -rw-r--r-- | utils/themeeditor/graphics/rbviewport.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/themeeditor/graphics/rbviewport.h b/utils/themeeditor/graphics/rbviewport.h index 81841d5..c557632 100644 --- a/utils/themeeditor/graphics/rbviewport.h +++ b/utils/themeeditor/graphics/rbviewport.h @@ -60,6 +60,12 @@ public: void alignText(Alignment align){ textAlign = align; } int getTextOffset(){ return textOffset.y(); } void addTextOffset(int height){ textOffset.setY(textOffset.y() + height); } + void flushText() + { + alignLeft(); + alignRight(); + alignCenter(); + } void enableStatusBar(){ showStatusBar = true; } |