Skip to content

Commit

Permalink
pixi changes (before validation fork)
Browse files Browse the repository at this point in the history
  • Loading branch information
ianharrigan committed Oct 6, 2017
1 parent 78eba23 commit 6af70e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 19 deletions.
1 change: 1 addition & 0 deletions haxe/ui/backend/TextDisplayBase.hx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ class TextDisplayBase extends Text {
public function new() {
super("");
scale = new pixi.core.math.Point(1, 1);
//this.style.wordWrap = true;
}

public var textWidth(get, null):Float;
Expand Down
18 changes: 0 additions & 18 deletions haxe/ui/backend/pixi.config.xml

This file was deleted.

3 changes: 2 additions & 1 deletion haxe/ui/backend/pixi/PixiStyleHelper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ class PixiStyleHelper {
if (borderRadius == 0) {
graphics.drawRect(rc.left, rc.top, rc.width, rc.height);
} else {
graphics.drawRoundedRect(rc.left, rc.top, rc.width, rc.height, borderRadius);
//graphics.drawRoundedRect(rc.left, rc.top, rc.width, rc.height, borderRadius);
graphics.drawRect(rc.left, rc.top, rc.width, rc.height);
}
}

Expand Down

0 comments on commit 6af70e2

Please sign in to comment.