mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
prepend window to mru list instead of appending, since making the window
2004-08-05 Elijah Newren <newren@math.utah.edu> * src/window.c (meta_window_stick): prepend window to mru list instead of appending, since making the window sticky should imply that it is the most recently used, not the least recently. (fixes #149369)
This commit is contained in:
parent
65ba48ad3f
commit
b834001fe7
@ -1,3 +1,10 @@
|
||||
2004-08-05 Elijah Newren <newren@math.utah.edu>
|
||||
|
||||
* src/window.c (meta_window_stick): prepend window to mru list
|
||||
instead of appending, since making the window sticky should imply
|
||||
that it is the most recently used, not the least recently. (fixes
|
||||
#149369)
|
||||
|
||||
2004-08-04 Elijah Newren <newren@math.utah.edu>
|
||||
|
||||
* configure.in: post-release version bump (2.8.3) that I forgot to
|
||||
|
@ -3420,7 +3420,7 @@ meta_window_stick (MetaWindow *window)
|
||||
{
|
||||
workspace = (MetaWorkspace *) tmp->data;
|
||||
if (!g_list_find (workspace->mru_list, window))
|
||||
workspace->mru_list = g_list_append (workspace->mru_list, window);
|
||||
workspace->mru_list = g_list_prepend (workspace->mru_list, window);
|
||||
|
||||
tmp = tmp->next;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user