mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 08:00:42 -05:00
Correct highlighting of windows in workspace switcher popup. Fixes
2005-01-11 Elijah Newren <newren@gmail.com> Correct highlighting of windows in workspace switcher popup. Fixes #163450. * src/tabpopup.c (meta_select_workspace_expose_event): Remove race between FocusIn/FocusOut events and the expose event by replacing window->has_focus with window==window->display->expected_focus_window.
This commit is contained in:
parent
1830a35000
commit
2e465de233
10
ChangeLog
10
ChangeLog
@ -1,3 +1,13 @@
|
|||||||
|
2005-01-11 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
Correct highlighting of windows in workspace switcher popup.
|
||||||
|
Fixes #163450.
|
||||||
|
|
||||||
|
* src/tabpopup.c (meta_select_workspace_expose_event): Remove race
|
||||||
|
between FocusIn/FocusOut events and the expose event by replacing
|
||||||
|
window->has_focus with
|
||||||
|
window==window->display->expected_focus_window.
|
||||||
|
|
||||||
2005-01-09 Elijah Newren <newren@gmail.com>
|
2005-01-09 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
* configure.in: post-release version bump to 2.9.5
|
* configure.in: post-release version bump to 2.9.5
|
||||||
|
@ -781,7 +781,8 @@ meta_select_workspace_expose_event (GtkWidget *widget,
|
|||||||
{
|
{
|
||||||
windows[i].icon = window->icon;
|
windows[i].icon = window->icon;
|
||||||
windows[i].mini_icon = window->mini_icon;
|
windows[i].mini_icon = window->mini_icon;
|
||||||
windows[i].is_active = window->has_focus;
|
windows[i].is_active =
|
||||||
|
(window == window->display->expected_focus_window);
|
||||||
|
|
||||||
if (window->frame)
|
if (window->frame)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user