Event fired when export to clipboard button is clicked
(self, event)
| 360 | self.stNotice.SetLabel(_t("Could not import from clipboard")) |
| 361 | |
| 362 | def exportPatterns(self, event): |
| 363 | """Event fired when export to clipboard button is clicked""" |
| 364 | sTR = TargetProfile.getInstance() |
| 365 | toClipboard(sTR.exportPatterns()) |
| 366 | self.stNotice.SetLabel(_t("Profiles exported to clipboard")) |
| 367 | |
| 368 | def kbEvent(self, event): |
| 369 | if event.GetKeyCode() == wx.WXK_ESCAPE and event.GetModifiers() == wx.MOD_NONE: |
nothing calls this directly
no test coverage detected