wolfhece 2.1.117__py3-none-any.whl → 2.1.119__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7673,6 +7673,11 @@ class Zones(wx.Frame, Element_To_Draw):
7673
7673
 
7674
7674
  if self.active_vector is None:
7675
7675
  logging.warning(_('No vector in the active zone'))
7676
+ if self.parent is not None:
7677
+ try:
7678
+ self.parent.Active_zone(self.active_zone)
7679
+ except:
7680
+ raise Warning(_('Not supported in the current parent -- see PyVertexVectors in Activate_zone function'))
7676
7681
  else:
7677
7682
  self.labelactvect.SetLabel(self.active_vector.myname)
7678
7683
 
wolfhece/apps/version.py CHANGED
@@ -5,7 +5,7 @@ class WolfVersion():
5
5
 
6
6
  self.major = 2
7
7
  self.minor = 1
8
- self.patch = 117
8
+ self.patch = 119
9
9
 
10
10
  def __str__(self):
11
11