Changeset 5de852c in mainline for uspace/app
- Timestamp:
- 2022-01-11T13:12:15Z (4 years ago)
- Branches:
- master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- bfc0fc6
- Parents:
- 59768c7
- git-author:
- Jiri Svoboda <jiri@…> (2022-01-10 20:11:54)
- git-committer:
- Jiri Svoboda <jiri@…> (2022-01-11 13:12:15)
- Location:
- uspace/app
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/calculator/calculator.c
r59768c7 r5de852c 186 186 calc_t *calc = (calc_t *) arg; 187 187 188 if (ui_window_def_kbd(window, event) == ui_claimed) 189 return; 190 188 191 if (event->type == KEY_PRESS && (event->mods & KM_CTRL) != 0) { 189 192 switch (event->key) { -
uspace/app/edit/edit.c
r59768c7 r5de852c 2230 2230 pane.keymod = event->mods; 2231 2231 2232 if (ui_window_def_kbd(window, event) == ui_claimed) 2233 return; 2234 2232 2235 if (event->type == KEY_PRESS) { 2233 2236 key_handle_press(event);
Note:
See TracChangeset
for help on using the changeset viewer.