mirror of
https://github.com/konvajs/konva.git
synced 2025-12-05 03:24:23 +08:00
fixed _modifyPathContext optimization problem
This commit is contained in:
4
dist/kinetic-core.js
vendored
4
dist/kinetic-core.js
vendored
@@ -1498,10 +1498,10 @@ Kinetic.Stage.prototype = {
|
||||
context.fill = function() {
|
||||
};
|
||||
context.fillRect = function(x, y, width, height) {
|
||||
layer.context.rect(x, y, width, height);
|
||||
context.rect(x, y, width, height);
|
||||
};
|
||||
context.strokeRect = function(x, y, width, height) {
|
||||
layer.context.rect(x, y, width, height);
|
||||
context.rect(x, y, width, height);
|
||||
};
|
||||
context.drawImage = function() {
|
||||
};
|
||||
|
||||
4
dist/kinetic-core.min.js
vendored
4
dist/kinetic-core.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -585,10 +585,10 @@ Kinetic.Stage.prototype = {
|
||||
context.fill = function() {
|
||||
};
|
||||
context.fillRect = function(x, y, width, height) {
|
||||
layer.context.rect(x, y, width, height);
|
||||
context.rect(x, y, width, height);
|
||||
};
|
||||
context.strokeRect = function(x, y, width, height) {
|
||||
layer.context.rect(x, y, width, height);
|
||||
context.rect(x, y, width, height);
|
||||
};
|
||||
context.drawImage = function() {
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user