From 29fa9c0870eebc152a92da2290e405be6e37fc56 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Thu, 5 Oct 2017 16:34:56 -0700 Subject: *: s/vwm_win_focused/vwm_win_get_focused/ --- src/xevent.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/xevent.c') diff --git a/src/xevent.c b/src/xevent.c index 97c575b..e1b38e3 100644 --- a/src/xevent.c +++ b/src/xevent.c @@ -205,7 +205,7 @@ void vwm_xevent_handle_map_request(vwm_t *vwm, XMapRequestEvent *ev) vwm_win_map(vwm, vwin); /* XSetInputFocus() must to happen after XMapWindow(), so do it here. */ - if (vwm_win_focused(vwm) == vwin) + if (vwm_win_get_focused(vwm) == vwin) XSetInputFocus(VWM_XDISPLAY(vwm), vwin->xwindow->id, RevertToPointerRoot, CurrentTime); } else { /* this is unexpected */ -- cgit v1.2.3