Currently, settings (language and font) are saved in a global object that remains available during a session; however, they have to be reinitialized every time the program is run. Furthermore, this require some added complication to the with_app decorator, as explained in a comment on Issue#3.
A nice enhancement would be so save/retrieve such configuration values in a local file - probably using pickle since the font selection is a QFont object. Doing this would likely allow to simplify the with_app decorator substantially.
Currently, settings (language and font) are saved in a global object that remains available during a session; however, they have to be reinitialized every time the program is run. Furthermore, this require some added complication to the with_app decorator, as explained in a comment on Issue#3.
A nice enhancement would be so save/retrieve such configuration values in a local file - probably using pickle since the font selection is a QFont object. Doing this would likely allow to simplify the with_app decorator substantially.