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


Ignore:
Timestamp:
2025-10-20T06:14:54Z (4 months ago)
Author:
GitHub <noreply@…>
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)
Message:

Merge branch 'HelenOS:master' into ticket/packet-capture

File:
1 edited

Legend:

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

    radbd7e1 raefdccd  
    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.