Skip to content

Commit

Permalink
allow setting isnativescroller
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed May 29, 2024
1 parent 88f7747 commit ef28f5c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion haxe/ui/backend/ComponentBase.hx
Original file line number Diff line number Diff line change
Expand Up @@ -1706,10 +1706,13 @@ class ComponentBase extends ComponentSurface implements IClonable<ComponentBase>
return new Point(0, 0);
}

private var isNativeScroller(get, null):Bool;
private var isNativeScroller(get, set):Bool;
private function get_isNativeScroller():Bool {
return false;
}
private function set_isNativeScroller(value:Bool):Bool {
return value;
}

private var isHybridScroller(get, set):Bool;
private function get_isHybridScroller():Bool {
Expand Down

0 comments on commit ef28f5c

Please sign in to comment.