diff options
author | mathias <mathias> | 2004-11-19 12:00:20 (GMT) |
---|---|---|
committer | mathias <mathias> | 2004-11-19 12:00:20 (GMT) |
commit | 66a3fc1c4dfa2cb68e650257e0bd10f2906c0d39 (patch) | |
tree | 76f6052a4f5e52288107a78d4307fd719c20b5f6 /src/FbTk/FontImp.hh | |
parent | 993c17cf2efd3caba5241276c268909197dd3681 (diff) | |
download | fluxbox_pavel-66a3fc1c4dfa2cb68e650257e0bd10f2906c0d39.zip fluxbox_pavel-66a3fc1c4dfa2cb68e650257e0bd10f2906c0d39.tar.bz2 |
fixes fontsituations when text disappears in non-antialias mode
primary problem was to use utf8 when in fact the FontSet wasnt
utf8.
Diffstat (limited to 'src/FbTk/FontImp.hh')
-rw-r--r-- | src/FbTk/FontImp.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/FbTk/FontImp.hh b/src/FbTk/FontImp.hh index 8691feb..4cdf839 100644 --- a/src/FbTk/FontImp.hh +++ b/src/FbTk/FontImp.hh | |||
@@ -50,6 +50,7 @@ public: | |||
50 | virtual unsigned int height() const = 0; | 50 | virtual unsigned int height() const = 0; |
51 | virtual bool loaded() const = 0; | 51 | virtual bool loaded() const = 0; |
52 | virtual void rotate(float angle) { } // by default, no rotate support | 52 | virtual void rotate(float angle) { } // by default, no rotate support |
53 | virtual bool utf8() const { return false; }; | ||
53 | protected: | 54 | protected: |
54 | FontImp() { } | 55 | FontImp() { } |
55 | }; | 56 | }; |