Changeset 88d828e in mainline for uspace/srv/hid/display/wmops.c
- Timestamp:
- 2022-11-09T16:44:28Z (22 months ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 68704ab
- Parents:
- a6492460
- git-author:
- Jiri Svoboda <jiri@…> (2022-11-09 16:41:51)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-11-09 16:44:28)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/wmops.c
ra6492460 r88d828e 171 171 } 172 172 173 // TODO Multi-seat 174 (void) dev_id; 175 seat = ds_display_first_seat(wnd->display); 173 /* Determine which seat's focus should be changed */ 174 seat = ds_display_seat_by_idev(wnd->display, dev_id); 175 if (seat == NULL) { 176 ds_display_unlock(wmclient->display); 177 return ENOENT; 178 } 176 179 177 180 /* Switch focus */
Note:
See TracChangeset
for help on using the changeset viewer.