summaryrefslogtreecommitdiff
path: root/app/cwm/mousefunc.c
diff options
context:
space:
mode:
authorOkan Demirmen <okan@cvs.openbsd.org>2012-09-09 19:47:48 +0000
committerOkan Demirmen <okan@cvs.openbsd.org>2012-09-09 19:47:48 +0000
commita514e69ee8bb6f7915d6bd8437b003bae29c1d85 (patch)
treed85debd3251b04ea361382b1ea6f23a9908b65ad /app/cwm/mousefunc.c
parentc89e19c7bf4c18a149b4ad1e1872a7f426dee283 (diff)
extend client_resize so that it can know when to reset max flags and
bwidth; this allows a client to be resized from a max state, which now gets treated like a non-max'd client. based on a diff that does part of this in a different way from Alexander Polakov.
Diffstat (limited to 'app/cwm/mousefunc.c')
-rw-r--r--app/cwm/mousefunc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/cwm/mousefunc.c b/app/cwm/mousefunc.c
index 4f6ec66da..5af879829 100644
--- a/app/cwm/mousefunc.c
+++ b/app/cwm/mousefunc.c
@@ -16,7 +16,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: mousefunc.c,v 1.37 2012/07/13 17:01:04 okan Exp $
+ * $OpenBSD: mousefunc.c,v 1.38 2012/09/09 19:47:47 okan Exp $
*/
#include <sys/param.h>
@@ -110,12 +110,12 @@ mousefunc_window_resize(struct client_ctx *cc, void *arg)
/* don't resize more than 60 times / second */
if ((ev.xmotion.time - ltime) > (1000 / 60)) {
ltime = ev.xmotion.time;
- client_resize(cc);
+ client_resize(cc, 1);
}
break;
case ButtonRelease:
if (ltime)
- client_resize(cc);
+ client_resize(cc, 1);
XUnmapWindow(X_Dpy, sc->menuwin);
XReparentWindow(X_Dpy, sc->menuwin, sc->rootwin, 0, 0);
xu_ptr_ungrab();