all repos — fluxbox @ d5b04d1fa00c3e4edd951bbbf1bfddac8c33a066

custom fork of the fluxbox windowmanager

fix grip drawing issue
rathnor rathnor
commit

d5b04d1fa00c3e4edd951bbbf1bfddac8c33a066

parent

c8948f0398db122bf9c3e2416052e50cb1830784

1 files changed, 8 insertions(+), 1 deletions(-)

jump to
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.69 2004/01/10 00:37:35 rathnor Exp $ +// $Id: FbWinFrame.cc,v 1.70 2004/01/10 20:22:05 rathnor Exp $ #include "FbWinFrame.hh"

@@ -928,6 +928,13 @@

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