diff options
-rw-r--r-- | src/FbTk/Texture.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/Texture.cc b/src/FbTk/Texture.cc index 0395cd5..04f5eb7 100644 --- a/src/FbTk/Texture.cc +++ b/src/FbTk/Texture.cc | |||
@@ -80,7 +80,7 @@ void Texture::setFromString(const char * const texture_str) { | |||
80 | } else if (strstr(ts, "solid")) | 80 | } else if (strstr(ts, "solid")) |
81 | addType(Texture::SOLID); | 81 | addType(Texture::SOLID); |
82 | else | 82 | else |
83 | addType(Texture::DEFAULT_BEVEL); | 83 | addType(Texture::DEFAULT_TEXTURE); |
84 | 84 | ||
85 | if (strstr(ts, "raised")) | 85 | if (strstr(ts, "raised")) |
86 | addType(Texture::RAISED); | 86 | addType(Texture::RAISED); |
@@ -89,7 +89,7 @@ void Texture::setFromString(const char * const texture_str) { | |||
89 | else if (strstr(ts, "flat")) | 89 | else if (strstr(ts, "flat")) |
90 | addType(Texture::FLAT); | 90 | addType(Texture::FLAT); |
91 | else | 91 | else |
92 | addType(Texture::DEFAULT_TEXTURE); | 92 | addType(Texture::DEFAULT_BEVEL); |
93 | 93 | ||
94 | if (! (type() & Texture::FLAT)) | 94 | if (! (type() & Texture::FLAT)) |
95 | if (strstr(ts, "bevel2")) | 95 | if (strstr(ts, "bevel2")) |