mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-08 21:10:06 +01:00
Fix to allow '=' char in caption or name of AUI pane
This commit is contained in:
@@ -5332,7 +5332,7 @@ class AuiManager(wx.EvtHandler):
|
||||
options = pane_part.split(";")
|
||||
for items in options:
|
||||
|
||||
val_name, value = items.split("=")
|
||||
val_name, value = items.split("=", 1)
|
||||
val_name = val_name.strip()
|
||||
|
||||
if val_name == "name":
|
||||
|
||||
Reference in New Issue
Block a user