Skip to content

Commit

Permalink
Merge pull request #712 from fietser28/table-scrollbar
Browse files Browse the repository at this point in the history
Add scrollbar part to table widget styles
  • Loading branch information
mvladic authored Feb 2, 2025
2 parents 3c86e3d + 9e85c36 commit 363aec1
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 363aec1

Please sign in to comment.