summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2014-06-18 11:28:11 +0200
committerPeter Wu <peter@lekensteyn.nl>2014-06-18 11:28:11 +0200
commit450bf70af0761e6d2c4b59ba413cc2043a936e79 (patch)
tree6a421a15ad482187d2499c2739da509bbe850ec7
parent193742c324fab947d166c0b7df3d20d5e8b8da47 (diff)
downloadscripts-450bf70af0761e6d2c4b59ba413cc2043a936e79.tar.gz
rare/interrupt-graph.py: connect initial two points
-rwxr-xr-xrare/interrupts-graph.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rare/interrupts-graph.py b/rare/interrupts-graph.py
index 34d28ee..e4286c3 100755
--- a/rare/interrupts-graph.py
+++ b/rare/interrupts-graph.py
@@ -183,7 +183,7 @@ def update():
lines[name].set_data(xdata, ydata)
else:
color = COLORS[names.index(name) % len(COLORS)]
- lines[name], = plt.plot(xdata, ydata, MARKER_DEFAULT,
+ lines[name], = plt.plot(xdata, ydata, MARKER_DEFAULT + '-',
label=name,
color=color)
lines[name].set_picker(5) # Make selectable