aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfluxgen <fluxgen>2004-01-11 20:33:24 (GMT)
committerfluxgen <fluxgen>2004-01-11 20:33:24 (GMT)
commitd03b0107e7cb1d58acd28f2b3df8b393199d84bd (patch)
treeba8f7bcd14e185d1728ea49690ec5bedc6e3846c
parent65e8c31f712be608efdc3108dee7a382a1fea010 (diff)
downloadfluxbox-d03b0107e7cb1d58acd28f2b3df8b393199d84bd.zip
fluxbox-d03b0107e7cb1d58acd28f2b3df8b393199d84bd.tar.bz2
added missing invert type
-rw-r--r--src/FbTk/Texture.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/FbTk/Texture.cc b/src/FbTk/Texture.cc
index 4c451cb..2b67842 100644
--- a/src/FbTk/Texture.cc
+++ b/src/FbTk/Texture.cc
@@ -22,7 +22,7 @@
22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
23// DEALINGS IN THE SOFTWARE. 23// DEALINGS IN THE SOFTWARE.
24 24
25// $Id: Texture.cc,v 1.6 2003/08/12 11:44:19 fluxgen Exp $ 25// $Id: Texture.cc,v 1.7 2004/01/11 20:33:24 fluxgen Exp $
26 26
27#include "Texture.hh" 27#include "Texture.hh"
28 28
@@ -78,6 +78,8 @@ void Texture::setFromString(const char * const texture_str) {
78 addType(Texture::SUNKEN); 78 addType(Texture::SUNKEN);
79 else if (strstr(ts, "flat")) 79 else if (strstr(ts, "flat"))
80 addType(Texture::FLAT); 80 addType(Texture::FLAT);
81 else if (strstr(ts, "invert"))
82 addType(Texture::INVERT);
81 else 83 else
82 addType(Texture::RAISED); 84 addType(Texture::RAISED);
83 85