Skip to content

Commit

Permalink
Add scrollbar part to table styles
Browse files Browse the repository at this point in the history
  • Loading branch information
fietser28 committed Jan 31, 2025
1 parent 4f35420 commit 9e85c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/project-editor/lvgl/widgets/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export class LVGLTableWidget extends LVGLWidget {
),

lvgl: {
parts: ["MAIN", "ITEMS"],
parts: ["MAIN", "ITEMS", "SCROLLBAR"],
defaultFlags:
"CLICKABLE|CLICK_FOCUSABLE|GESTURE_BUBBLE|PRESS_LOCK|SCROLLABLE|SCROLL_CHAIN_HOR|SCROLL_CHAIN_VER|SCROLL_ELASTIC|SCROLL_MOMENTUM|SCROLL_WITH_ARROW|SNAPPABLE"
}
Expand Down Expand Up @@ -74,5 +74,5 @@ export class LVGLTableWidget extends LVGLWidget {
build.line(`lv_obj_t *obj = lv_table_create(parent_obj);`);
}

override lvglBuildSpecific(build: LVGLBuild) {}
override lvglBuildSpecific(build: LVGLBuild) { }
}

0 comments on commit 9e85c36

Please sign in to comment.