From a7bc011277676219654da623936ed39d323a434f Mon Sep 17 00:00:00 2001 From: Ari Date: Sat, 8 Feb 2025 18:58:21 -0500 Subject: [PATCH] Update hyperlink.py, fixes #2686 Uses StaticText instead of GenStaticText Tested in linux (fedora, ubuntu), windows 11, MacOS sequoia --- wx/lib/agw/hyperlink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wx/lib/agw/hyperlink.py b/wx/lib/agw/hyperlink.py index c6506503..9f8dd394 100644 --- a/wx/lib/agw/hyperlink.py +++ b/wx/lib/agw/hyperlink.py @@ -122,7 +122,7 @@ Version 0.7 """ import wx -from wx.lib.stattext import GenStaticText as StaticText +from wx import StaticText # Import the useful webbrowser module for platform-independent results import webbrowser