all repos — fluxbox @ d03b0107e7cb1d58acd28f2b3df8b393199d84bd

custom fork of the fluxbox windowmanager

added missing invert type
fluxgen fluxgen
commit

d03b0107e7cb1d58acd28f2b3df8b393199d84bd

parent

65e8c31f712be608efdc3108dee7a382a1fea010

1 files changed, 3 insertions(+), 1 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.6 2003/08/12 11:44:19 fluxgen Exp $ +// $Id: Texture.cc,v 1.7 2004/01/11 20:33:24 fluxgen Exp $ #include "Texture.hh"

@@ -78,6 +78,8 @@ else if (strstr(ts, "sunken"))

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