[Skin] global variables handling
Opened this issue · 0 comments
jbleyel commented
The access to variables should be replaced by a function like this:
Current:
from skin import parameters
parameters.get(..)
New:
from skin import getParameters
getParameters().get(..)
parameters is only one example.
Why do we need this?
The import of these global variables will not work if the values will be changed.