-
Notifications
You must be signed in to change notification settings - Fork 0
Preferences
russ_hensel edited this page Jul 1, 2025
·
7 revisions
A very large amount of application behavior is managed through preferences in preferences.py The basic idea is simple: we have a global singleton that has instance variables which are then use elsewhere in the program.
we will briefly discuss two aspects of this:
- some useful parameters or groups of parameters
- some complications in the object
Some useful parameters or groups of parameters As usual in the application you should read the code, only the highest level explanation is in this Wiki.
*Variables that control what tabs you see:
** dir_for_tabs
Some complications in the object