mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-23 04:00:09 +01:00
⁉️ Not sure if the generated .rst stuff is intended to have
whitespace like this in it or not, so seperating this from the other
commits, so easy to revert if necessary.
14 lines
382 B
Python
14 lines
382 B
Python
|
|
# do the window-specific processing after processing the update event
|
|
def DoUpdateWindowUI(self, event):
|
|
|
|
if event.GetSetEnabled():
|
|
self.Enable(event.GetEnabled())
|
|
|
|
if event.GetSetText():
|
|
|
|
if event.GetText() != self.GetTitle():
|
|
self.SetTitle(event.GetText())
|
|
|
|
|