diff options
author | Vito Caputo <vcaputo@pengaru.com> | 2020-12-23 18:24:23 -0800 |
---|---|---|
committer | Vito Caputo <vcaputo@pengaru.com> | 2020-12-23 18:25:55 -0800 |
commit | d564d06b1ce89e90e1aacc5433b5eabd38270973 (patch) | |
tree | 18cac48f7687c9cbacf343baa6c9c047c81befd7 /src/window.c | |
parent | 3161db573424a554b536aaa492397341b84683ce (diff) |
desktop: drop unused desktop names
At some point I wanted to support naming virtual desktops, but that
never materialized and I don't find myself wishing it was there.
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index cfcdd36..b3e32c1 100644 --- a/src/window.c +++ b/src/window.c @@ -572,7 +572,7 @@ vwm_window_t * vwm_win_manage_xwin(vwm_t *vwm, vwm_xwindow_t *xwin) /* if the desktop has no focused window yet, automatically focus the newly managed one, provided we're on the desktop context */ if (!vwm->focused_desktop->focused_window && vwm->focused_context == VWM_CONTEXT_DESKTOP) { - VWM_TRACE("Mapped new window \"%s\" is alone on desktop \"%s\", focusing", xwin->name, vwm->focused_desktop->name); + VWM_TRACE("Mapped new window \"%s\" is alone on desktop, focusing", xwin->name); vwm_win_focus(vwm, vwin); } |