aboutsummaryrefslogtreecommitdiffstats
path: root/mousefunc.c
diff options
context:
space:
mode:
authorokan2015-06-08 15:11:29 +0000
committerokan2015-06-08 15:11:29 +0000
commita9121c4a3d2d0952061f7cf9d9f32460be6f0601 (patch)
treec1491e4efd0712eb56c6738a91f9c503ddc820b3 /mousefunc.c
parent8f9657c7874a16c6c163260692f13b8105cc3c2d (diff)
downloadcwm-a9121c4a3d2d0952061f7cf9d9f32460be6f0601.tar.gz
stash window dimensions
Diffstat (limited to '')
-rw-r--r--mousefunc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/mousefunc.c b/mousefunc.c
index 84a2fb4..814c6f4 100644
--- a/mousefunc.c
+++ b/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.89 2015/06/07 19:10:00 okan Exp $
+ * $OpenBSD: mousefunc.c,v 1.90 2015/06/08 15:11:29 okan Exp $
*/
#include <sys/types.h>
@@ -53,9 +53,7 @@ mousefunc_sweep_draw(struct client_ctx *cc)
struct screen_ctx *sc = cc->sc;
char s[14]; /* fits " nnnn x nnnn \0" */
- (void)snprintf(s, sizeof(s), " %4d x %-4d ",
- (cc->geom.w - cc->hint.basew) / cc->hint.incw,
- (cc->geom.h - cc->hint.baseh) / cc->hint.inch);
+ (void)snprintf(s, sizeof(s), " %4d x %-4d ", cc->dim.w, cc->dim.h);
XReparentWindow(X_Dpy, sc->menuwin, cc->win, 0, 0);
XMoveResizeWindow(X_Dpy, sc->menuwin, 0, 0,