Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Oct 9, 2024
1 parent 5731b65 commit 155019f
Show file tree
Hide file tree
Showing 5 changed files with 93 additions and 93 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "Envox <[email protected]>",
"description": "Cross-platform visual development tool and SCPI instrument controller",
"homepage": "https://www.envox.hr/eez/studio/studio-introduction.html",
"version": "0.18.0",
"version": "0.18.1",
"revision": "1",
"license": "GPL-3.0-only",
"repository": "https://github.com/eez-open/studio",
Expand Down
2 changes: 1 addition & 1 deletion packages/project-editor/flow/runtime/cpp/eez-framework
12 changes: 6 additions & 6 deletions resources/eez-framework-amalgamation/eez-flow.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on October 8, 2024 9:58:21 AM from eez-framework commit 85345abb5051f25daa824fb7a125d6d3ac0196ba */
/* Autogenerated on October 9, 2024 10:58:06 AM from eez-framework commit 30298c57c5bdb68891b585c121e403d094605478 */
/*
* eez-framework
*
Expand Down Expand Up @@ -4263,7 +4263,7 @@ ACTION_START(objGetX)
#else
int32_t x = lv_obj_get_x(obj);
#endif
RESULT(result, Value(x, VALUE_TYPE_INT32));
RESULT(result, Value((int)x, VALUE_TYPE_INT32));
ACTION_END
ACTION_START(objSetY)
WIDGET_PROP(obj);
Expand All @@ -4281,7 +4281,7 @@ ACTION_START(objGetY)
#else
int32_t y = lv_obj_get_y(obj);
#endif
RESULT(result, Value(y, VALUE_TYPE_INT32));
RESULT(result, Value((int)y, VALUE_TYPE_INT32));
ACTION_END
ACTION_START(objSetWidth)
WIDGET_PROP(obj);
Expand All @@ -4299,7 +4299,7 @@ ACTION_START(objGetWidth)
#else
int32_t width = lv_obj_get_width(obj);
#endif
RESULT(result, Value(width, VALUE_TYPE_INT32));
RESULT(result, Value((int)width, VALUE_TYPE_INT32));
ACTION_END
ACTION_START(objSetHeight)
WIDGET_PROP(obj);
Expand All @@ -4317,7 +4317,7 @@ ACTION_START(objGetHeight)
#else
int32_t height = lv_obj_get_height(obj);
#endif
RESULT(result, Value(height, VALUE_TYPE_INT32));
RESULT(result, Value((int)height, VALUE_TYPE_INT32));
ACTION_END
ACTION_START(objSetStyleOpa)
WIDGET_PROP(obj);
Expand All @@ -4327,7 +4327,7 @@ ACTION_END
ACTION_START(objGetStyleOpa)
WIDGET_PROP(obj);
int32_t opa = (int32_t)lv_obj_get_style_opa(obj, 0);
RESULT(result, Value(opa, VALUE_TYPE_INT32));
RESULT(result, Value((int)opa, VALUE_TYPE_INT32));
ACTION_END
ACTION_START(objAddStyle)
WIDGET_PROP(obj);
Expand Down
2 changes: 1 addition & 1 deletion resources/eez-framework-amalgamation/eez-flow.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Autogenerated on October 8, 2024 9:58:21 AM from eez-framework commit 85345abb5051f25daa824fb7a125d6d3ac0196ba */
/* Autogenerated on October 9, 2024 10:58:06 AM from eez-framework commit 30298c57c5bdb68891b585c121e403d094605478 */
/*
* eez-framework
*
Expand Down
Loading

0 comments on commit 155019f

Please sign in to comment.