mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 15:40:41 -05:00
clutter/stage: Actually set key focus to an actor on key focus
As per commit c2d03bf73
we're using a private method to set the actors key
focus and emit key-focus-in signal, but we're using inverted logic here.
So flip the parameter to match the expected result.
https://gitlab.gnome.org/GNOME/mutter/merge_requests/860
This commit is contained in:
parent
97010ac64d
commit
553211dd81
@ -3049,7 +3049,7 @@ clutter_stage_set_key_focus (ClutterStage *stage,
|
||||
if (actor != NULL)
|
||||
{
|
||||
priv->key_focused_actor = actor;
|
||||
_clutter_actor_set_has_key_focus (actor, FALSE);
|
||||
_clutter_actor_set_has_key_focus (actor, TRUE);
|
||||
}
|
||||
else
|
||||
_clutter_actor_set_has_key_focus (CLUTTER_ACTOR (stage), TRUE);
|
||||
|
Loading…
Reference in New Issue
Block a user