ivi-shell: bugfix, send notification when properties are changed according to event mask.
Previous code sends notification without event mask. So the notification Signed-off-by: Nobuhiko Tanibata <NOBUHIKO_TANIBATA@xddp.denso.co.jp> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
This commit is contained in:
parent
4d0116eb0d
commit
6ce3ef864d
@ -1079,11 +1079,13 @@ send_prop(struct ivi_layout *layout)
|
||||
struct ivi_layout_surface *ivisurf = NULL;
|
||||
|
||||
wl_list_for_each_reverse(ivilayer, &layout->layer_list, link) {
|
||||
send_layer_prop(ivilayer);
|
||||
if (ivilayer->event_mask)
|
||||
send_layer_prop(ivilayer);
|
||||
}
|
||||
|
||||
wl_list_for_each_reverse(ivisurf, &layout->surface_list, link) {
|
||||
send_surface_prop(ivisurf);
|
||||
if (ivisurf->event_mask)
|
||||
send_surface_prop(ivisurf);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user