blob: b339b4af3866b0fa084091e2e6f8e9ad6efc8131 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from mojo.events import addObserver
class EqualizeSidebearings(object):
def __init__(self):
addObserver(self, 'center', 'spaceCenterKeyUp')
def center(self, info):
print info
EqualizeSidebearings()
|