Removed bad AquaTk Button-2 (right) and Paste bindings. They prevent context menu access and seem to be gone in AquaTk8.6. See issue #24801.
(root)
| 241 | del mainmenu.menudefs[-1][1][0] |
| 242 | |
| 243 | def fixb2context(root): |
| 244 | '''Removed bad AquaTk Button-2 (right) and Paste bindings. |
| 245 | |
| 246 | They prevent context menu access and seem to be gone in AquaTk8.6. |
| 247 | See issue #24801. |
| 248 | ''' |
| 249 | root.unbind_class('Text', '<B2>') |
| 250 | root.unbind_class('Text', '<B2-Motion>') |
| 251 | root.unbind_class('Text', '<<PasteSelection>>') |
| 252 | |
| 253 | def setupApp(root, flist): |
| 254 | """ |
no test coverage detected
searching dependent graphs…