From 396b011610d780ad67d299ec3bcb5ef291304ed5 Mon Sep 17 00:00:00 2001 From: dan Date: Sat, 14 Jun 2003 21:13:34 +0000 Subject: [PATCH] Fixed bug with focusing a deminiaturized window with sloppy focus mode --- ChangeLog | 1 + src/actions.c | 3 +-- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0fbd8f0e..18c1d652 100644 --- a/ChangeLog +++ b/ChangeLog @@ -98,6 +98,7 @@ Changes since version 0.80.2: - Icon arrangement that takes the new extended xinerama 'strut' into account (Peter Zijlstra ) - Fixed the 'KDE omnipresent' bug. +- Fixed bug with focusing a deminiaturized window with sloppy focus mode Changes since version 0.80.1: diff --git a/src/actions.c b/src/actions.c index a7c208e7..de8faaa9 100644 --- a/src/actions.c +++ b/src/actions.c @@ -1125,8 +1125,7 @@ wDeiconifyWindow(WWindow *wwin) } XUngrabServer(dpy); - if (wPreferences.focus_mode==WKF_CLICK) - wSetFocusTo(wwin->screen_ptr, wwin); + wSetFocusTo(wwin->screen_ptr, wwin); #ifdef ANIMATIONS if (!wwin->screen_ptr->flags.startup) { -- 2.11.4.GIT