aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-03-30 12:48:27 +0200
committerhjk <hjk@theqtcompany.com>2015-03-30 11:29:02 +0000
commit5dcd9fe6947f8cdd48a8b8e5dd67d64914d21e48 (patch)
tree82783b328f11b41d2cf361869ecb3f0fbd694955
parent257f62b7089d8c7dfc5989f35df52da978fc82da (diff)
Debugger: Change plot display of array data to use lines between dots
Change-Id: I6d2cf5ca7d3f4a404a3c112a140aeae067cb3b6d Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
-rw-r--r--share/qtcreator/debugger/dumper.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qtcreator/debugger/dumper.py b/share/qtcreator/debugger/dumper.py
index 0326b0dcbc..cc9a8e46be 100644
--- a/share/qtcreator/debugger/dumper.py
+++ b/share/qtcreator/debugger/dumper.py
@@ -158,7 +158,7 @@ if hasSubprocess and hasPlot:
s("pyplot.figure(%s)" % matplotFigure[iname])
s("pyplot.suptitle('%s')" % iname)
s("data = %s" % data)
- s("pyplot.plot([i for i in range(len(data))], data, 'b.')")
+ s("pyplot.plot([i for i in range(len(data))], data, 'b.-')")
time.sleep(0.2)
s("pyplot.draw()")
matplotProc.stdin.flush()