aboutsummaryrefslogtreecommitdiffstats
path: root/preferences.py
blob: 7f6434c3ff36b53a9ef3429db6cba515cf920203 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import vanilla

class EqualizeSidebearingsPreferences(object):

    def __init__(self):
        self.w = vanilla.Window((150, 50), 'Equalize Sidebearings')
        self.w.activation_key_label = vanilla.TextBox((10, 15, -10, 22), 'Short Key:')
        self.w.activation_key = vanilla.EditText((82, 12, -10, 25), 'e')
        self.w.open()


EqualizeSidebearingsPreferences()