mirror of
https://github.com/konvajs/konva.git
synced 2025-06-28 06:07:13 +08:00
fixed _modifyPathContext optimization problem
This commit is contained in:
parent
0ac84408e9
commit
f5b6b3c06f
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() {
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user