Changes in uspace/srv/hid/display/window.c [0d00e53:be0ec50] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/srv/hid/display/window.c
r0d00e53 rbe0ec50 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 153 153 154 154 /* Is this a popup window? */ 155 if ((params->flags & wndf_popup) != 0) {155 if ((params->flags & wndf_popup) != 0) 156 156 ds_seat_set_popup(seat, wnd); 157 } else { 158 if ((params->flags & wndf_nofocus) == 0) 159 ds_seat_set_focus(seat, wnd); 160 } 157 else 158 ds_seat_set_focus(seat, wnd); 161 159 162 160 /* Is this window a panel? */
Note:
See TracChangeset
for help on using the changeset viewer.