aboutsummaryrefslogtreecommitdiffstats
path: root/calmwm.c
diff options
context:
space:
mode:
authorokan2012-07-05 17:35:13 +0000
committerokan2012-07-05 17:35:13 +0000
commit7725a2826a2508d6adde3db984ebe7db9246cb12 (patch)
treea6edbd00a6069017e83227c258b811ffd42a4085 /calmwm.c
parent43b0623ffd37b963e25c844f0f7bbfa162e707b6 (diff)
downloadcwm-7725a2826a2508d6adde3db984ebe7db9246cb12.tar.gz
the display's width and height are updated after an XRandR event so we
don't need to pass down the new values to screen_update_geometry(); so just read the width/height values directly for both uses of screen_update_geometry(). prep for further changes in this area.
Diffstat (limited to '')
-rw-r--r--calmwm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calmwm.c b/calmwm.c
index 30cf99f..77af7a8 100644
--- a/calmwm.c
+++ b/calmwm.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: calmwm.c,v 1.61 2012/05/16 01:17:14 okan Exp $
+ * $OpenBSD: calmwm.c,v 1.62 2012/07/05 17:35:13 okan Exp $
*/
#include <sys/param.h>
@@ -167,8 +167,8 @@ x_setupscreen(struct screen_ctx *sc, u_int which)
xu_ewmh_net_supported_wm_check(sc);
conf_gap(&Conf, sc);
- screen_update_geometry(sc, DisplayWidth(X_Dpy, sc->which),
- DisplayHeight(X_Dpy, sc->which));
+
+ screen_update_geometry(sc);
conf_color(&Conf, sc);