all repos — fluxbox @ ae6e193aa706324981f0c60dfe6faa2152b07ac7

custom fork of the fluxbox windowmanager

fix rendering of window frame on focus change
rathnor rathnor
commit

ae6e193aa706324981f0c60dfe6faa2152b07ac7

parent

412897c99a81377a93981cae098710d8ffd52fd2

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

jump to
M ChangeLogChangeLog

@@ -1,5 +1,8 @@

(Format: Year/Month/Day) Changes for 0.9.6: +*03/10/02: + * Fix updating of window on focus change (Simon) + FbWinFrame.cc *03/09/29: * Fix aterm not updating on opaque move (Thanks Mathias Gumz) Window.cc
M src/FbWinFrame.ccsrc/FbWinFrame.cc

@@ -19,7 +19,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: FbWinFrame.cc,v 1.54 2003/09/24 14:02:25 rathnor Exp $ +// $Id: FbWinFrame.cc,v 1.55 2003/10/02 13:09:24 rathnor Exp $ #include "FbWinFrame.hh"

@@ -238,6 +238,7 @@ }

m_focused = newvalue; + renderTitlebar(); renderButtons(); renderHandles(); }

@@ -881,8 +882,16 @@ }

} m_grip_left.setAlpha(theme().alpha()); + m_grip_left.clear(); + m_grip_left.updateTransparent(); + m_grip_right.setAlpha(theme().alpha()); + m_grip_right.clear(); + m_grip_right.updateTransparent(); + m_handle.setAlpha(theme().alpha()); + m_handle.clear(); + m_handle.updateTransparent(); }