From 70ec2f990f611382ac4ffaff29096f9819b31c52 Mon Sep 17 00:00:00 2001
From: Jon Evans <jon@craftyjon.com>
Date: Sat, 21 Jan 2023 17:06:44 -0500
Subject: [PATCH] Work around wxPython / wxPropertyGrid fighting over global
 state

Fixes https://gitlab.com/kicad/code/kicad/-/issues/13280
---
 scripting/python_scripting.cpp | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/scripting/python_scripting.cpp b/scripting/python_scripting.cpp
index 79e26c6c42..ab352817d0 100644
--- a/scripting/python_scripting.cpp
+++ b/scripting/python_scripting.cpp
@@ -100,6 +100,12 @@ wx_version = ""
 try:
     from wx import version
     wx_version = version()
+
+    # Import wx modules that re-initialize wx globals, because they break wxPropertyGrid
+    # (and probably some other stuff) if we let this happen after we already have started
+    # mutating those globals.
+    import wx.adv, wx.html, wx.richtext
+
 except:
     pass
     )", pybind11::globals(), locals );