Changeset f9c4c433 in mainline for uspace/app/nav/panel.c


Ignore:
Timestamp:
2025-09-16T13:02:37Z (6 months ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
master
Children:
283bb9f
Parents:
113fb4f
Message:

Create new file in Navigator (WIP)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/nav/panel.c

    r113fb4f rf9c4c433  
    365365}
    366366
     367/** Refresh panel contents.
     368 *
     369 * @param panel Panel
     370 * @return EOK on success or an error code
     371 */
     372errno_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
    367383/** Request panel activation.
    368384 *
Note: See TracChangeset for help on using the changeset viewer.