From f689ef03fa721514bd373260598d75a2d0fcc80f Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Fri, 17 Apr 2009 13:24:00 +0000 Subject: [PATCH] mention incompatible change in EVT_TREE_ITEM_ACTIVATED behaviour under MSW git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@60217 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- docs/changes.txt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/changes.txt b/docs/changes.txt index 10c966f753..61d7cd2311 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -91,6 +91,15 @@ Major new features in 2.8 release 2.8.11: ------- +*** INCOMPATIBLE CHANGE: *** + +Due to an oversight, a bug fix in wxMSW resulted in an incompatible change in +wxTreeCtrl behaviour: its EVT_TREE_ITEM_ACTIVATED handler now must skip the +event being processed to allow the item to be toggled by double clicking on it. +I.e. you need to ensure there is an "event.Skip()" in your item activation +handler if you do wish to allow the item to be toggled. + + All: - Added several functions forward compatible with wxWidgets 3.0 (troelsk):