Skip to content

Commit fafbac9

Browse files
committed
Merge branch 'develop'
2 parents 50c38ab + f4cbf67 commit fafbac9

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

packaging/windows/build_windows_installer.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ SetCompressor /SOLID lzma
44

55
; HM NIS Edit Wizard helper defines
66
!define PRODUCT_NAME "PyPlane"
7-
!define PRODUCT_VERSION "2.0.1"
7+
!define PRODUCT_VERSION "2.0.2"
88
!define PRODUCT_PUBLISHER "Institute of Control Theory"
99
!define PRODUCT_WEB_SITE "https://github.com/TUD-RST/pyplane.git"
1010

pyplane/app.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ class MainApp(PyplaneMainWindow):
3737
settings GUI logic (listview elements, variable description, etc)
3838
"""
3939

40-
__PYPLANE_VERSION = "2.0.1"
41-
__PYPLANE_DATE = "2021-11-15"
40+
__PYPLANE_VERSION = "2.0.2"
41+
__PYPLANE_DATE = "2022-05-25"
4242

4343
def __init__(self):
4444
# superclass constructor

pyplane/core/StreamlineHandler.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -83,10 +83,7 @@ def remove(self):
8383
except:
8484
pass
8585

86-
#sl_arrows.remove() doesn't work
87-
# doesn't work either: del sl.arrows
88-
# as long as no other patches are used:
89-
self.myWidget.Plot.canvas.axes.patches = []
86+
self.myWidget.Plot.canvas.axes.patches.clear()
9087

9188
myLogger.message("Streamlines removed")
9289
else:

0 commit comments

Comments
 (0)