Example #1
0
 def _OnJumpNear(self, evt):
     """
     Called on "jump near" event (menu -> Actions -> Jump near).
     """
     if self._CheckNodeProxy():
         dialog = wx.TextEntryDialog(self.main_window,
             message=_("Please enter the address to jump to"),
             caption=_("Jump near an entity"),
             defaultValue='slp://192.33.178.29:5010/'
         )
         if dialog.ShowModal() == wx.ID_OK:
             v = dialog.GetValue()
             BaseNavigatorApp._OnJumpNear(self, v)