aboutsummaryrefslogtreecommitdiffstats
path: root/preferences.py
diff options
context:
space:
mode:
Diffstat (limited to 'preferences.py')
-rw-r--r--preferences.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/preferences.py b/preferences.py
index aebd776..d770ab0 100644
--- a/preferences.py
+++ b/preferences.py
@@ -3,8 +3,9 @@ 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 = 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()