all repos — fluxbox @ 8681e27ec24f39e8f30387644deb5b719bacd2e6

custom fork of the fluxbox windowmanager

minor bugfix
fluxgen fluxgen
commit

8681e27ec24f39e8f30387644deb5b719bacd2e6

parent

be807760d03827e4c61621b958568d69aa3dcf21

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

jump to
M src/IconbarTool.ccsrc/IconbarTool.cc

@@ -20,7 +20,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: IconbarTool.cc,v 1.14 2003/10/09 16:48:09 rathnor Exp $ +// $Id: IconbarTool.cc,v 1.15 2003/10/26 20:13:11 fluxgen Exp $ #include "IconbarTool.hh"

@@ -424,13 +424,14 @@ if (m_theme.emptyTexture().type() == (FbTk::Texture::FLAT | FbTk::Texture::SOLID)) {

m_empty_pm = 0; m_icon_container.setBackgroundColor(m_theme.emptyTexture().color()); } else { - m_empty_pm = m_screen.imageControl().renderImage(m_icon_container.width(), m_icon_container.height(), + m_empty_pm = m_screen.imageControl().renderImage(m_icon_container.width(), + m_icon_container.height(), m_theme.emptyTexture()); m_icon_container.setBackgroundPixmap(m_empty_pm); } if (tmp) - m_screen.imageControl().removeImage(m_empty_pm); + m_screen.imageControl().removeImage(tmp); m_icon_container.setBorderWidth(m_theme.border().width()); m_icon_container.setBorderColor(m_theme.border().color());