diff options
| author | Alon Levy <alon@pobox.com> | 2014-12-06 22:08:47 +0200 |
|---|---|---|
| committer | Alon Levy <alon@pobox.com> | 2014-12-06 22:08:47 +0200 |
| commit | 77d81db2ae26fafd65d1fd268b8398c05b18c696 (patch) | |
| tree | 2956d73cbee569f4d4c8c3ee405d5f2527031c97 /src | |
| parent | 7a829f269b2dfcc24292b8dc351d26afb60a7568 (diff) | |
Show underscore for empty text to enable click editing (Fixes #190)
Diffstat (limited to 'src')
| -rw-r--r-- | src/rz_core.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rz_core.js b/src/rz_core.js index 1c6db8ee..8a95d05e 100644 --- a/src/rz_core.js +++ b/src/rz_core.js @@ -471,7 +471,7 @@ function update_view__graph(no_relayout) { node.select('g.node text') .text(function(d) { if (!d.name) { - return ""; + return "_"; } if (d.state === "temp" || d.state === 'chosen' || d.state === "enter" || d.state === "exit") { |
