aboutsummaryrefslogtreecommitdiffstats
path: root/xutil.c
diff options
context:
space:
mode:
authorokan2014-09-23 14:25:08 +0000
committerokan2014-09-23 14:25:08 +0000
commit67bc0ac5f4529aa91e615a0bccb42424ff432926 (patch)
treece33ee89b616fbbf14ec406251776ba364da8dbb /xutil.c
parentca567c515e829d14facdedce8e5ca147a21d013c (diff)
downloadcwm-67bc0ac5f4529aa91e615a0bccb42424ff432926.tar.gz
Update _NET_CURRENT_DESKTOP with the screen's group_active->num.
Diffstat (limited to 'xutil.c')
-rw-r--r--xutil.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/xutil.c b/xutil.c
index fe1d535..26188af 100644
--- a/xutil.c
+++ b/xutil.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: xutil.c,v 1.95 2014/09/17 18:41:44 okan Exp $
+ * $OpenBSD: xutil.c,v 1.96 2014/09/23 14:25:08 okan Exp $
*/
#include <sys/param.h>
@@ -274,10 +274,12 @@ xu_ewmh_net_virtual_roots(struct screen_ctx *sc)
}
void
-xu_ewmh_net_current_desktop(struct screen_ctx *sc, long idx)
+xu_ewmh_net_current_desktop(struct screen_ctx *sc)
{
+ long num = sc->group_active->num;
+
XChangeProperty(X_Dpy, sc->rootwin, ewmh[_NET_CURRENT_DESKTOP],
- XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&idx, 1);
+ XA_CARDINAL, 32, PropModeReplace, (unsigned char *)&num, 1);
}
void