Changeset 59
- Timestamp:
- 02/09/04 18:52:42 (5 years ago)
- Files:
-
- 05/bugfix/kombilo.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
05/bugfix/kombilo.py
r54 r59 4 4 ## Copyright (C) 2001-4 Ulrich Goertz (u@g0ertz.de) 5 5 6 ## Kombilo 0.5 his a go database program.6 ## Kombilo 0.5i is a go database program. 7 7 8 8 ## This program is free software; you can redistribute it and/or modify … … 36 36 t = Text(root, wrap=WORD, width=70, height=12) 37 37 t.pack() 38 t.insert(END, 'Kombilo 0.5 h\n\n The Python Megawidgets (Pmw) library was not found. It is needed by Kombilo, ' + \38 t.insert(END, 'Kombilo 0.5i\n\n The Python Megawidgets (Pmw) library was not found. It is needed by Kombilo, ' + \ 39 39 'so you have to install it before you can use Kombilo. See the Kombilo tutorial at ' + \ 40 40 'http://www.u-go.net/kombilo/tutorial#installation or the Pmw web site at ' + \ … … 92 92 self.smartFixedColor = smartFixedColor 93 93 94 self.boundM2_1 = self.bind('<M2-Button-1>', self.selStart)95 self.boundM2_1m = self.bind('<M2-B1-Motion>', self.selDrag)94 # self.boundM2_1 = self.bind('<M2-Button-1>', self.selStart) 95 # self.boundM2_1m = self.bind('<M2-B1-Motion>', self.selDrag) 96 96 self.bound3 = self.bind('<Button-3>', self.selStart) 97 97 self.bound3m = self.bind('<B3-Motion>', self.selDrag) … … 974 974 b.unbind('<B3-Motion>', b.bound3m) 975 975 b.unbind('<3>', b.bound3) 976 b.unbind('<M2-Button-1>', b.boundM2_1)977 b.unbind('<M2-B1-Motion>', b.boundM2_1m)976 # b.unbind('<M2-Button-1>', b.boundM2_1) 977 # b.unbind('<M2-B1-Motion>', b.boundM2_1m) 978 978 b.unbind('<Configure>', b.boundConf) 979 979 b.bound3 = b.bind('<3>', lambda event, self=self, l = len(self.data): self.postMenu(event, l)) … … 5753 5753 t = [] 5754 5754 5755 t.append('Kombilo 0.5 h- written by Ulrich Goertz (u@g0ertz.de)\n\n')5755 t.append('Kombilo 0.5i - written by Ulrich Goertz (u@g0ertz.de)\n\n') 5756 5756 t.append('Kombilo is a go database program.\n') 5757 5757 t.append('You can find more information on Kombilo and the newest ')
