summaryrefslogtreecommitdiff
path: root/libwnck/tasklist.c
diff options
context:
space:
mode:
Diffstat (limited to 'libwnck/tasklist.c')
-rw-r--r--libwnck/tasklist.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/libwnck/tasklist.c b/libwnck/tasklist.c
index 9c96834..c6d17b1 100644
--- a/libwnck/tasklist.c
+++ b/libwnck/tasklist.c
@@ -2345,7 +2345,14 @@ wnck_task_button_press_event (GtkWidget *widget,
case WNCK_TASK_WINDOW:
if (event->button == 1)
{
- if (wnck_window_is_active (task->window))
+ /* is_most_recently_activated == is_active for click &
+ * sloppy focus methods. We use the former here because
+ * 'mouse' focus provides a special case. In that case, no
+ * window will be active, but if a window was the most
+ * recently active one (i.e. user moves mouse straight from
+ * window to tasklist), then we should still minimize it.
+ */
+ if (wnck_window_is_most_recently_activated (task->window))
task->was_active = TRUE;
else
task->was_active = FALSE;