Browse Source

decrease whitespace in ellipses having long text

codeClimate
Chas Honton 8 years ago
committed by Alexander Wunschik
parent
commit
dd3639f2ad
1 changed files with 2 additions and 5 deletions
  1. +2
    -5
      lib/network/modules/components/nodes/shapes/Ellipse.js

+ 2
- 5
lib/network/modules/components/nodes/shapes/Ellipse.js View File

@ -11,11 +11,8 @@ class Ellipse extends NodeBase {
if (this.width === undefined) {
var textSize = this.labelModule.getTextSize(ctx, selected);
this.width = textSize.width * 1.5;
this.height = textSize.height * 2;
if (this.width < this.height) {
this.width = this.height;
}
this.width = textSize.width + this.height;
this.radius = 0.5*this.width;
}
}
@ -82,4 +79,4 @@ class Ellipse extends NodeBase {
}
}
export default Ellipse;
export default Ellipse;

Loading…
Cancel
Save