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