use 27 instead of 25

This commit is contained in:
Devin Howard 2016-11-30 11:43:07 -05:00
parent d1aa62d382
commit 7abd566261
2 changed files with 4 additions and 4 deletions

View file

@ -228,7 +228,7 @@ const JIT = {
ctx.fillStyle = '#FFF' ctx.fillStyle = '#FFF'
ctx.textBaseline = 'alphabetic' ctx.textBaseline = 'alphabetic'
const arrayOfLabelLines = Util.splitLine(desc, 25).split('\n') const arrayOfLabelLines = Util.splitLine(desc, 27).split('\n')
let lineWidths = [] let lineWidths = []
for (let index = 0; index < arrayOfLabelLines.length; ++index) { for (let index = 0; index < arrayOfLabelLines.length; ++index) {
lineWidths.push(ctx.measureText(arrayOfLabelLines[index]).width) lineWidths.push(ctx.measureText(arrayOfLabelLines[index]).width)
@ -497,7 +497,7 @@ const JIT = {
'contains': function(node, pos) { 'contains': function(node, pos) {
const npos = node.pos.getc(true) const npos = node.pos.getc(true)
const dim = node.getData('dim') const dim = node.getData('dim')
const arrayOfLabelLines = Util.splitLine(node.name, 25).split('\n') const arrayOfLabelLines = Util.splitLine(node.name, 27).split('\n')
const ctx = Visualize.mGraph.canvas.getCtx() const ctx = Visualize.mGraph.canvas.getCtx()
const height = 25 * arrayOfLabelLines.length const height = 25 * arrayOfLabelLines.length
@ -1930,7 +1930,7 @@ const JIT = {
minY = y minY = y
} }
let arrayOfLabelLines = Util.splitLine(n.name, 25).split('\n') let arrayOfLabelLines = Util.splitLine(n.name, 27).split('\n')
let dim = n.getData('dim') let dim = n.getData('dim')
let ctx = canvas.getCtx() let ctx = canvas.getCtx()

View file

@ -7580,7 +7580,7 @@ Graph.Label.Native = new Class({
//START METAMAPS CODE //START METAMAPS CODE
var arrayOfLabelLines = Metamaps.Util.splitLine(node.name, 25).split('\n'); var arrayOfLabelLines = Metamaps.Util.splitLine(node.name, 27).split('\n');
//render background //render background
ctx.fillStyle = ctx.strokeStyle = Metamaps.Settings.colors.labels.background; ctx.fillStyle = ctx.strokeStyle = Metamaps.Settings.colors.labels.background;
ctx.lineWidth = 2; ctx.lineWidth = 2;