Changeset 5823aef3 in mainline
- Timestamp:
- 2021-06-10T13:22:33Z (3 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d7f82635
- Parents:
- 9e84d2c
- git-author:
- Jiri Svoboda <jiri@…> (2021-06-03 17:03:11)
- git-committer:
- jxsvoboda <5887334+jxsvoboda@…> (2021-06-10 13:22:33)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/seat.c
r9e84d2c r5823aef3 432 432 * below, anyway. 433 433 */ 434 if (seat->popup != wnd && seat->popup !=NULL) {434 if (seat->popup != NULL) { 435 435 rc = ds_window_post_pos_event(seat->popup, event); 436 436 if (rc != EOK) … … 452 452 ds_seat_set_client_cursor(seat, wnd->cursor); 453 453 454 rc = ds_window_post_pos_event(wnd, event); 455 if (rc != EOK) 456 return rc; 454 /* 455 * Only deliver event if we didn't already deliver it 456 * to the same window above. 457 */ 458 if (wnd != seat->popup) { 459 rc = ds_window_post_pos_event(wnd, event); 460 if (rc != EOK) 461 return rc; 462 } 457 463 } else { 458 464 /* Not over a window */
Note:
See TracChangeset
for help on using the changeset viewer.