From 6b36a139576bb83b73d77be8964acb5778f05d36 Mon Sep 17 00:00:00 2001 From: tadam Date: Wed, 9 Mar 2016 21:01:15 +0000 Subject: [PATCH] Set EWMH desktop names during startup If the DesktopName command is used from a configuration file, FVWM won't apply those when that file is read during startup. Change this so it does. --- fvwm/virtual.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fvwm/virtual.c b/fvwm/virtual.c index e71def877..55ece3220 100644 --- a/fvwm/virtual.c +++ b/fvwm/virtual.c @@ -2502,8 +2502,8 @@ void CMD_DesktopName(F_CMD_ARGS) } BroadcastConfigInfoString(msg); free(msg); - EWMH_SetDesktopNames(); } + EWMH_SetDesktopNames(); return; }