From ec4937a7304750fc1aaa075b2992d731b03fedfa Mon Sep 17 00:00:00 2001 From: Gary Ruben Date: Mon, 8 Jun 2020 17:13:13 +1000 Subject: [PATCH] mouse over event handlers for mac --- gui_handlers.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/gui_handlers.py b/gui_handlers.py index a5c343e..afef964 100644 --- a/gui_handlers.py +++ b/gui_handlers.py @@ -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") + \ No newline at end of file