Changeset de19d4a in mainline for uspace/lib
- Timestamp:
- 2020-06-26T20:41:14Z (5 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aef48ce
- Parents:
- 78445be8
- Location:
- uspace/lib
- Files:
-
- 3 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/meson.build
r78445be8 rde19d4a 131 131 'generic/io/console.c', 132 132 'generic/io/table.c', 133 'generic/io/visualizer.c',134 133 'generic/iplink.c', 135 134 'generic/iplink_srv.c', -
uspace/lib/gui/window.c
r78445be8 rde19d4a 405 405 errno_t rc; 406 406 407 if (width < 2 * border_thickness + header_min_width) { 408 //win_damage(win->osess, 0, 0, 0, 0); 409 return; 410 } 411 412 if (height < 2 * border_thickness + header_height) { 413 //win_damage(win->osess, 0, 0, 0, 0); 414 return; 415 } 407 if (width < 2 * border_thickness + header_min_width) 408 return; 409 410 if (height < 2 * border_thickness + header_height) 411 return; 416 412 417 413 fibril_mutex_lock(&win->guard);
Note:
See TracChangeset
for help on using the changeset viewer.