all repos — fluxbox @ 1ac796e8e03fe406b314e36a4873cc7faf821e25

custom fork of the fluxbox windowmanager

check texture type too, it could be tiled
fluxgen fluxgen
commit

1ac796e8e03fe406b314e36a4873cc7faf821e25

parent

3fb05a9c781fecc1bbf520b3cbfa82de592102df

1 files changed, 3 insertions(+), 2 deletions(-)

jump to
M src/FbTk/ImageControl.ccsrc/FbTk/ImageControl.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: ImageControl.cc,v 1.9 2004/01/02 22:54:29 fluxgen Exp $ +// $Id: ImageControl.cc,v 1.10 2004/01/03 01:12:10 fluxgen Exp $ #include "ImageControl.hh"

@@ -158,7 +158,8 @@ CacheList::iterator it = cache.begin();

CacheList::iterator it_end = cache.end(); for (; it != it_end; ++it) { if ((*it)->texture_pixmap == text.pixmap().drawable() && - (*it)->width == width && (*it)->height == height) { + (*it)->width == width && (*it)->height == height && + (*it)->texture == text.type()) { (*it)->count++; return (*it)->pixmap; }