From b0854dedd12820cba8fe8a111c947284a1c0e0a4 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 10 Dec 2013 15:33:42 -0500 Subject: [PATCH] remove unused variable --- src/bin/e_desk.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/e_desk.c b/src/bin/e_desk.c index 9dea938d7..affe0dfe9 100644 --- a/src/bin/e_desk.c +++ b/src/bin/e_desk.c @@ -18,8 +18,6 @@ static void _e_desk_event_desk_window_profile_change_free(void *data, void static void _e_desk_window_profile_change_protocol_set(void); #endif -static Eina_Bool nofocus = EINA_FALSE; - EAPI int E_EVENT_DESK_SHOW = 0; EAPI int E_EVENT_DESK_BEFORE_SHOW = 0; EAPI int E_EVENT_DESK_AFTER_SHOW = 0; @@ -392,7 +390,7 @@ e_desk_last_focused_focus(E_Desk *desk) /* this was the window last focused in this desktop */ if (!bd->lock_focus_out) { - if (!nofocus) e_border_focus_set_with_pointer(bd); + e_border_focus_set_with_pointer(bd); return bd; } }