Changeset aefdccd in mainline for uspace/app/nav/panel.c
- Timestamp:
- 2025-10-20T06:14:54Z (4 months ago)
- Parents:
- adbd7e1 (diff), 3e41cc4 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - git-author:
- boba-buba <120932204+boba-buba@…> (2025-10-20 06:14:54)
- git-committer:
- GitHub <noreply@…> (2025-10-20 06:14:54)
- File:
-
- 1 edited
-
uspace/app/nav/panel.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/nav/panel.c
radbd7e1 raefdccd 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.
