Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/justpinegames/Logi/Console.as
Original file line number Diff line number Diff line change
Expand Up @@ -140,9 +140,9 @@ package justpinegames.Logi

_copyButton.addEventListener(Event.ADDED, function(e:Event):void
{
_copyButton.defaultLabelProperties.smoothing = TextureSmoothing.NONE;
_copyButton.defaultLabelProperties.textureSmoothing = TextureSmoothing.NONE;
_copyButton.defaultLabelProperties.textFormat = defaultLabelTextFormat;
_copyButton.downLabelProperties.smoothing = TextureSmoothing.NONE;
_copyButton.downLabelProperties.textureSmoothing = TextureSmoothing.NONE;
_copyButton.downLabelProperties.textFormat = downLabelTextFormat;

_copyButton.stateToSkinFunction = stateToSkinFunction;
Expand Down Expand Up @@ -277,7 +277,7 @@ package justpinegames.Logi
{
label.textFormat = format;
});
label.smoothing = TextureSmoothing.NONE;
label.textureSmoothing = TextureSmoothing.NONE;
label.text = text;
label.validate();
return label;
Expand Down
4 changes: 2 additions & 2 deletions src/justpinegames/Logi/ConsoleItemRenderer.as
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ package justpinegames.Logi

this.addEventListener(Event.ADDED, function(e:Event):void
{
defaultLabelProperties.smoothing = TextureSmoothing.NONE;
defaultLabelProperties.textureSmoothing = TextureSmoothing.NONE;
defaultLabelProperties.textFormat = labelTextFormat;
downLabelProperties.smoothing = TextureSmoothing.NONE;
downLabelProperties.textureSmoothing = TextureSmoothing.NONE;
downLabelProperties.textFormat = labelTextFormat;

horizontalAlign = HORIZONTAL_ALIGN_LEFT;
Expand Down