Changes in uspace/app/terminal/terminal.c [211fd68:4c6fd56] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/terminal/terminal.c
r211fd68 r4c6fd56 1 1 /* 2 * Copyright (c) 202 4Jiri Svoboda2 * Copyright (c) 2023 Jiri Svoboda 3 3 * Copyright (c) 2012 Petr Koupy 4 4 * All rights reserved. … … 974 974 wparams.placement = ui_wnd_place_top_left; 975 975 976 /* 977 * Compute window rectangle such that application area corresponds 978 * to rect 979 */ 980 ui_wdecor_rect_from_app(wparams.style, &rect, &wrect); 981 off = wrect.p0; 982 gfx_rect_rtranslate(&off, &wrect, &wparams.rect); 983 984 term->off = off; 985 976 986 rc = ui_create(display_spec, &term->ui); 977 987 if (rc != EOK) { … … 979 989 goto error; 980 990 } 981 982 /*983 * Compute window rectangle such that application area corresponds984 * to rect985 */986 ui_wdecor_rect_from_app(term->ui, wparams.style, &rect, &wrect);987 off = wrect.p0;988 gfx_rect_rtranslate(&off, &wrect, &wparams.rect);989 990 term->off = off;991 991 992 992 rc = ui_window_create(term->ui, &wparams, &term->window);
Note:
See TracChangeset
for help on using the changeset viewer.