From 39d7e99a461dc43385381d465891bdcfbb67be5c Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Mon, 19 Dec 2016 16:33:40 +0200 Subject: [PATCH] xwm: delete dead flags from weston_wm_window_draw_decorations() Obviously unused. Looks like weston_wm_window_activate() is doing that job. Signed-off-by: Pekka Paalanen Reviewed-by: Quentin Glidic --- xwayland/window-manager.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/xwayland/window-manager.c b/xwayland/window-manager.c index 843a81c4..1dd8083f 100644 --- a/xwayland/window-manager.c +++ b/xwayland/window-manager.c @@ -1121,7 +1121,6 @@ weston_wm_window_draw_decoration(void *data) int32_t input_x, input_y, input_w, input_h; const struct weston_desktop_xwayland_interface *xwayland_interface = wm->server->compositor->xwayland_interface; - uint32_t flags = 0; wm_log("XWM: start draw decoration, win %d\n", window->id); @@ -1138,9 +1137,6 @@ weston_wm_window_draw_decoration(void *data) if (window->fullscreen) { /* nothing */ } else if (window->decorate) { - if (wm->focus_window == window) - flags |= THEME_FRAME_ACTIVE; - frame_set_title(window->frame, window->name); frame_repaint(window->frame, cr); } else {