Exemplo n.º 1
0
 def getProperties(self, *args, **kwargs):
     # __getattribute__ wouldn't suit, as RL is directly accessing self.__dict__
     props = Path.getProperties(self, *args, **kwargs)
     if 'strokeWidth' in props:
         props['strokeWidth'] = 0
     if 'strokeColor' in props:
         props['strokeColor'] = None
     return props
Exemplo n.º 2
0
 def getProperties(self, *args, **kwargs):
     # __getattribute__ wouldn't suit, as RL is directly accessing self.__dict__
     props = Path.getProperties(self, *args, **kwargs)
     if 'strokeWidth' in props:
         props['strokeWidth'] = 0
     if 'strokeColor' in props:
         props['strokeColor'] = None
     return props
Exemplo n.º 3
0
 def getProperties(self, *args, **kwargs):
     props = Path.getProperties(self, *args, **kwargs)
     if 'fillColor' in props:
         props['fillColor'] = None
     return props
Exemplo n.º 4
0
 def getProperties(self, *args, **kwargs):
     props = Path.getProperties(self, *args, **kwargs)
     if 'fillColor' in props:
         props['fillColor'] = None
     return props