fix aterm opaue move updating - thanks Mathias Gumz
This commit is contained in:
parent
81378f9494
commit
cb1a64576e
2 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
// 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 @@ void FluxboxWindow::stopMoving() {
|
|||
frame().show();
|
||||
}
|
||||
fluxbox->ungrab();
|
||||
} else
|
||||
} else {
|
||||
moveResize(frame().x(), frame().y(), frame().width(), frame().height());
|
||||
sendConfigureNotify();
|
||||
}
|
||||
|
||||
|
||||
screen().hideGeometry();
|
||||
XUngrabPointer(display, CurrentTime);
|
||||
|
|
Loading…
Reference in a new issue