Changeset f9c4c433 in mainline for uspace/app/nav/panel.c
- Timestamp:
- 2025-09-16T13:02:37Z (6 months ago)
- Branches:
- master
- Children:
- 283bb9f
- Parents:
- 113fb4f
- File:
-
- 1 edited
-
uspace/app/nav/panel.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/panel.c
r113fb4f rf9c4c433 365 365 } 366 366 367 /** Refresh panel contents. 368 * 369 * @param panel Panel 370 * @return EOK on success or an error code 371 */ 372 errno_t panel_refresh(panel_t *panel) 373 { 374 errno_t rc; 375 376 rc = ui_file_list_refresh(panel->flist); 377 if (rc != EOK) 378 return rc; 379 380 return panel_paint(panel); 381 } 382 367 383 /** Request panel activation. 368 384 *
Note:
See TracChangeset
for help on using the changeset viewer.
