all repos — fluxbox @ 2db11d210484ad754026e769c05ce85e10afbb7c

custom fork of the fluxbox windowmanager

minor fix
fluxgen fluxgen
commit

2db11d210484ad754026e769c05ce85e10afbb7c

parent

a819ff8252cc65c7e49d41b67c9bb1c1a40f0fb2

1 files changed, 5 insertions(+), 4 deletions(-)

jump to
M src/FbTk/Texture.ccsrc/FbTk/Texture.cc

@@ -22,7 +22,7 @@ // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING

// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER // DEALINGS IN THE SOFTWARE. -// $Id: Texture.cc,v 1.7 2004/01/11 20:33:24 fluxgen Exp $ +// $Id: Texture.cc,v 1.8 2004/01/11 21:04:21 fluxgen Exp $ #include "Texture.hh"

@@ -77,9 +77,7 @@ addType(Texture::RAISED);

else if (strstr(ts, "sunken")) addType(Texture::SUNKEN); else if (strstr(ts, "flat")) - addType(Texture::FLAT); - else if (strstr(ts, "invert")) - addType(Texture::INVERT); + addType(Texture::FLAT); else addType(Texture::RAISED);

@@ -88,6 +86,9 @@ if (strstr(ts, "bevel2"))

addType(Texture::BEVEL2); else addType(Texture::BEVEL1); + + if (strstr(ts, "invert")) + addType(Texture::INVERT); if (strstr(ts, "interlaced")) addType(Texture::INTERLACED);