From 431839ac8e74421678a5c3d619c97035f4616cc6 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Thu, 5 Aug 2004 00:40:09 +0000 Subject: [PATCH] little tweaks git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28633 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/docs/CHANGES.html | 2 +- wxPython/docs/MigrationGuide.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wxPython/docs/CHANGES.html b/wxPython/docs/CHANGES.html index 4cf883dfae..05bfa72824 100644 --- a/wxPython/docs/CHANGES.html +++ b/wxPython/docs/CHANGES.html @@ -11,7 +11,7 @@

Recent Changes for wxPython

-

2.5.2.2

+

2.5.2.3

wx.ADJUST_MINSIZE is now the default behaviour for window items in sizers. This means that the item's GetMinSize and/or GetBestSize will be called when calculating layout and the return value from that will diff --git a/wxPython/docs/MigrationGuide.html b/wxPython/docs/MigrationGuide.html index 9727ec6fad..90209ddcbe 100644 --- a/wxPython/docs/MigrationGuide.html +++ b/wxPython/docs/MigrationGuide.html @@ -787,7 +787,7 @@ new Navigate method in the wx.Window class to help send the event and it is used something like this:

 flags = wx.NavigationKeyEvent.IsForward
-if event.ShiftDown:
+if event.ShiftDown():
     flags = wx.NavigationKeyEvent.IsBackward
 if event.ControlDown():
     flags |= wx.NavigationKeyEvent.WinChange
-- 
2.47.2