Skip to content

Commit

Permalink
Fixed blurX issue in BlurFilter
Browse files Browse the repository at this point in the history
  • Loading branch information
Lanny McNie committed May 17, 2017
1 parent 8ab1f32 commit 78aec2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/easeljs/filters/BlurFilter.js
Expand Up @@ -134,8 +134,8 @@ this.createjs = this.createjs||{};
p.getBlurY = function() { return this._blurY; };
p.setBlurX = function(value) {
if(isNaN(value) || value < 0){ value = 0; }
this._blurY = value;
this._blurYTable = this._getTable(value * this._quality);
this._blurX = value;
this._blurXTable = this._getTable(value * this._quality);
this._updateShader();
};
p.setBlurY = function(value) {
Expand Down

0 comments on commit 78aec2a

Please sign in to comment.