all repos — fluxbox @ 5763339f4c732e53e786c798fb4143d7af4b291f

custom fork of the fluxbox windowmanager

remove default gray background on created FbWindows
(not everything should get a bg set)
simonb simonb
commit

5763339f4c732e53e786c798fb4143d7af4b291f

parent

64eb8cd6a92f4dfc0caf261b65535b86b3e0f542

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

jump to
M ChangeLogChangeLog

@@ -1,6 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.13 *05/05/07: + * Remove default "gray" background (Simon) + FbTk/FbWindow.cc * Fix titlebar transparency in some (tabbed) cases (Simon) FbWinFrame.cc *05/05/06:
M src/FbTk/FbWindow.ccsrc/FbTk/FbWindow.cc

@@ -163,9 +163,9 @@

if (only_if_alpha && alpha == 255) return; - // still use bg buffer pixmap if not transparent - // cause it does nice caching things, assuming we have a renderer - if (m_lastbg_pm != ParentRelative && (m_renderer || alpha != 255)) { + // still use bg buffer pixmap if not transparent + // cause it does nice caching things, assuming we have a renderer + if (m_lastbg_pm != ParentRelative && (m_renderer || alpha != 255)) { // update source and destination if needed Pixmap root = FbPixmap::getRootPixmap(screenNumber()); if (alpha != 255 && m_transparent->source() != root)

@@ -566,7 +566,6 @@

assert(m_window); updateGeometry(); - FbWindow::setBackgroundColor(Color("gray", screenNumber())); }