Example #1
0
 def pickEditor(self):
     editor = wb_pick_path_dialogs.pickExecutable(
         self, pathlib.Path(self.editor_program.text()))
     if editor is not None:
         self.editor_program.setText(str(editor))
 def pickEditor( self ):
     editor = wb_pick_path_dialogs.pickExecutable( self, pathlib.Path( self.editor_program.text() ) )
     if editor is not None:
         self.editor_program.setText( str(editor) )
 def __pickProgram( self ):
     program = wb_pick_path_dialogs.pickExecutable( self, pathlib.Path( self.git_program.text() ) )
     if program is not None:
         self.git_program.setText( str(program) )
 def __pickProgram(self):
     program = wb_pick_path_dialogs.pickExecutable(
         self, pathlib.Path(self.git_program.text()))
     if program is not None:
         self.git_program.setText(str(program))