Changeset 06176e1 in mainline for uspace/srv/hid/display/seat.c
- Timestamp:
- 2022-12-20T12:31:44Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4e7b0ad
- Parents:
- d46ac73
- git-author:
- Jiri Svoboda <jiri@…> (2022-12-19 18:31:30)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-12-20 12:31:44)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/seat.c
rd46ac73 r06176e1 90 90 void ds_seat_set_focus(ds_seat_t *seat, ds_window_t *wnd) 91 91 { 92 errno_t rc; 93 92 94 if (wnd == seat->focus) { 93 95 /* Focus is not changing */ 94 96 return; 97 } 98 99 if (wnd != NULL) { 100 rc = ds_window_unminimize(wnd); 101 if (rc != EOK) 102 return; 95 103 } 96 104
Note:
See TracChangeset
for help on using the changeset viewer.