Merge pull request #661 from robmcmullen/aui-layoutfix

Fix to allow '=' char in caption or name of AUI pane
This commit is contained in:
Robin Dunn
2018-01-02 15:31:43 -06:00
committed by GitHub

View File

@@ -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":