Skip to content

Commit

Permalink
mouse over event handlers for mac
Browse files Browse the repository at this point in the history
  • Loading branch information
gazzar committed Jun 8, 2020
1 parent ee8bbf6 commit ec4937a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions gui_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,3 +208,16 @@ def OnAbout(self, event):
aboutInfo.SetCopyright("3-clause BSD licence")
aboutInfo.SetWebSite("https://github.com/gazzar/loguetools")
wx.adv.AboutBox(aboutInfo)

def OnMouseoverId(self, event):
self.m_checkBox_id.SetToolTipString("Prepend id to filename")

def OnMouseoverMd5(self, event):
self.m_checkBox_md5.SetToolTipString("Append md5 checksum to filename")

def OnMouseoverVer(self, event):
self.m_checkBox_version.SetToolTipString("Append loguetools version to filename")

def OnMouseoverInits(self, event):
self.m_checkBox_inits.SetToolTipString("Include patches named Init Program")

0 comments on commit ec4937a

Please sign in to comment.