Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1"""Types of master fields.""" 

2 

3from config import Names as N 

4from control.typ.related import Related 

5 

6 

7class Master(Related): 

8 """Type class for types with values in master tables.""" 

9 

10 widgetType = N.master 

11 

12 def __init__(self, context): 

13 self.context = context