diff options
| author | serpilliere <devnull@localhost> | 2012-04-12 10:56:12 +0200 |
|---|---|---|
| committer | serpilliere <devnull@localhost> | 2012-04-12 10:56:12 +0200 |
| commit | a9a71e6200bdf9883fdfc3f4646abb11a2af52ed (patch) | |
| tree | cf63c36d1827de657ca1ee1124a7f4a13446bdd6 | |
| parent | 0720dbf62ec5e001c10f80b2e19c521d976fdef5 (diff) | |
| download | miasm-a9a71e6200bdf9883fdfc3f4646abb11a2af52ed.tar.gz miasm-a9a71e6200bdf9883fdfc3f4646abb11a2af52ed.zip | |
graph_qt: fix missing splines
| -rwxr-xr-x | miasm/graph/graph_qt.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/miasm/graph/graph_qt.py b/miasm/graph/graph_qt.py index adb4fe50..d0c88222 100755 --- a/miasm/graph/graph_qt.py +++ b/miasm/graph/graph_qt.py @@ -812,6 +812,7 @@ class MainWindow(QtGui.QWidget): def __init__(self, k = None, data = None): self.data = data self.k = k + self.splines = [] if not data: self.w, self.h = 80,40 else: |