summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRay Strode <halfline@hawaii.rr.com>2003-08-17 21:43:50 +0000
committerRay Strode <halfline@src.gnome.org>2003-08-17 21:43:50 +0000
commit81da59a8a4df2f4bf5f32a673e7ecb4bdf1af7f8 (patch)
tree6a7115e3a6006a6ebfad9c45b92bc3afaaa4c8b9 /src
parent22eab481b1320e8fe49e1337ae470d6f8c0b6bd2 (diff)
downloadmetacity-81da59a8a4df2f4bf5f32a673e7ecb4bdf1af7f8.tar.gz
Use MRU list to find focusing window after a window is deleted instead of
2003-08-17 Ray Strode <halfline@hawaii.rr.com> * src/delete.c (meta_window_delete): Use MRU list to find focusing window after a window is deleted instead of using top window. Fix for #108643.
Diffstat (limited to 'src')
-rw-r--r--src/delete.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/delete.c b/src/delete.c
index 061c892e..e7e713d1 100644
--- a/src/delete.c
+++ b/src/delete.c
@@ -386,9 +386,9 @@ meta_window_delete (MetaWindow *window,
* I don't know how to avoid that though.
*/
meta_topic (META_DEBUG_FOCUS,
- "Focusing top window because focus window %s was deleted/killed\n",
+ "Focusing MRU window because focus window %s was deleted/killed\n",
window->desc);
- meta_workspace_focus_top_window (window->screen->active_workspace,
+ meta_workspace_focus_mru_window (window->screen->active_workspace,
window);
}
else