all repos — fluxbox @ cb1a64576e259c98f2825e4b88dcd27b8cd93e1c

custom fork of the fluxbox windowmanager

fix aterm opaue move updating - thanks Mathias Gumz
rathnor rathnor
commit

cb1a64576e259c98f2825e4b88dcd27b8cd93e1c

parent

81378f9494db4ab1d033947532d7fac968095ecd

2 files changed, 7 insertions(+), 2 deletions(-)

jump to
M ChangeLogChangeLog

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

(Format: Year/Month/Day) Changes for 0.9.6: *03/09/29: + * Fix aterm not updating on opaque move (Thanks Mathias Gumz) + Window.cc * Fix resize calculations, particularly wrt base_width/height (Simon) - fixes abiword resize issues Window.hh/cc WinClient.hh/cc
M src/Window.ccsrc/Window.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: Window.cc,v 1.236 2003/09/29 14:58:15 rathnor Exp $ +// $Id: Window.cc,v 1.237 2003/09/29 15:00:06 rathnor Exp $ #include "Window.hh"

@@ -2751,8 +2751,11 @@ screen().reassociateWindow(this, screen().currentWorkspaceID(), true);

frame().show(); } fluxbox->ungrab(); - } else + } else { moveResize(frame().x(), frame().y(), frame().width(), frame().height()); + sendConfigureNotify(); + } + screen().hideGeometry(); XUngrabPointer(display, CurrentTime);