diff options
Diffstat (limited to 'preferences.py')
| -rw-r--r-- | preferences.py | 10 | 
1 files changed, 10 insertions, 0 deletions
| diff --git a/preferences.py b/preferences.py new file mode 100644 index 0000000..aebd776 --- /dev/null +++ b/preferences.py @@ -0,0 +1,10 @@ +import vanilla + +class EqualizeSidebearingsPreferences(object): + +    def __init__(self): +        self.w = vanilla.Window((200, 70), 'Equalize Sidebearings') +        self.w.activation_key = vanilla.EditText((0, 0, 0, 0), 'e') +        self.w.open() + +EqualizeSidebearingsPreferences() | 
