From efd8ebf022e378b1b5e25467090079192c3d30c4 Mon Sep 17 00:00:00 2001 From: andreas-p Date: Tue, 12 Apr 2022 20:05:47 +0200 Subject: [PATCH] fix tooltip --- LoggingDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LoggingDialog.py b/LoggingDialog.py index ac7044f..397fc53 100644 --- a/LoggingDialog.py +++ b/LoggingDialog.py @@ -22,7 +22,7 @@ def __init__(self, dlg, notebook, panelName): self.control=self['Listview'] if hasattr(self, 'GetToolTipText'): - self.control.RegisterToolTipProc(self.GetToolTipText) + self.control.RegisterToolTipProc(self.control.GetToolTipText) self.control.Bind(wx.EVT_LIST_COL_END_DRAG, self.OnListColResize) if hasattr(self, 'OnClear'): self.Bind("Clear", self.OnClear)