示例#1
0
 def OnOpenTestSuite(self, event):
     if not self.check_unsaved_modifications():
         return
     path = RobotFilePathDialog(
         self, self._controller, self._application.settings).execute()
     if path:
         self.open_suite(path)
示例#2
0
 def OnOpenTestSuite(self, event):
     if not self.check_unsaved_modifications():
         return
     path = RobotFilePathDialog(self, self._controller,
                                self._application.settings).execute()
     if path:
         if self.open_suite(path):
             return
         from robotide.editor import customsourceeditor
         customsourceeditor.main(path)