Changeset 66da893 in mainline for uspace/lib/ui


Ignore:
Timestamp:
2026-03-11T08:54:35Z (7 days ago)
Author:
GitHub <noreply@…>
Parents:
b979ffb (diff), cbaf408 (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:
Matej Volf <mat.volfik@…> (2026-03-11 08:54:35)
git-committer:
GitHub <noreply@…> (2026-03-11 08:54:35)
Message:

Merge cbaf408fef7cfefd533ecd43ec15ba0fa2a37154 into b979ffbe85306f4a2b9b3c98f2311014a3ae021e

Location:
uspace/lib/ui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/lib/ui/include/types/ui/cursor.h

    rb979ffb r66da893  
    4949        ui_curs_size_urdl,
    5050        /** I-beam (suggests editable text) */
    51         ui_curs_ibeam
     51        ui_curs_ibeam,
     52        /** Pointer (suggests clickable object) */
     53        ui_curs_pointer,
    5254} ui_stock_cursor_t;
    5355
  • uspace/lib/ui/src/window.c

    rb979ffb r66da893  
    13461346                dcursor = dcurs_ibeam;
    13471347                break;
     1348        case ui_curs_pointer:
     1349                dcursor = dcurs_pointer;
     1350                break;
    13481351        }
    13491352
Note: See TracChangeset for help on using the changeset viewer.