Commit 1cefcd4d authored by bgeron's avatar bgeron Committed by Commit bot

[turbolizer] Display labels when they're at most 40 chars, not 30.

BUG=
R=danno

Review-Url: https://codereview.chromium.org/2232933002
Cr-Commit-Position: refs/heads/master@{#38562}
parent a9fe26ef
...@@ -63,7 +63,7 @@ var Node = { ...@@ -63,7 +63,7 @@ var Node = {
}, },
getDisplayLabel: function() { getDisplayLabel: function() {
var result = this.id + ":" + this.label; var result = this.id + ":" + this.label;
if (result.length > 30) { if (result.length > 40) {
return this.id + ":" + this.opcode; return this.id + ":" + this.opcode;
} else { } else {
return result; return result;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment