2.5.2.6 release candidate build uploaded

Hi,

A new RC build of wxPython has been uploaded to starship.

   Version: 2.5.2.6
   URL: http://starship.python.net/crew/robind/wxPython/preview/2.5.2.6

Have fun!
R'bot

Very minor bug in the FloatCanvas demo - the error handling code that
errors out if Numeric or Numarray are not available needs an "import
wx" in it (say at line 24).

···

On Wed Aug 11 19:15:41 PDT 2004, R'bot <rbot@wxpython.org> wrote:

Hi,

A new RC build of wxPython has been uploaded to starship.

   Version: 2.5.2.6
   URL: http://starship.python.net/crew/robind/wxPython/preview/2.5.2.6

Have fun!
R'bot

Huston, we have a problem:
actualy there are 2 problems :slight_smile:
attached is the file that illustrates them:

1. OnRightUp gets called ONLY when there is a double rigth click
2. the GetColumn() method of ListEvent seams to be broken (allways returns 0)

Using wxPythonWIN32-2.5.2.6u-Py23 on WinXP
The problem was also present in 2.5.2.5u

listctrl.py (878 Bytes)

···

--
Peter Damoc
Hacker Wannabe
http://www.sigmacore.net/

Peter Damoc wrote:

Huston, we have a problem:
actualy there are 2 problems :slight_smile:
attached is the file that illustrates them:

1. OnRightUp gets called ONLY when there is a double rigth click

Because the mouse event is getting eaten because of the EVT_LIST_ITEM_RIGHT_CLICK, (even with the evt.Skip() call.) I'm not sure if it is the native control's fault or wx code, but it's always been this way.

2. the GetColumn() method of ListEvent seams to be broken (allways returns 0)

GetColumn is only valid in the EVT_LIST_COL_CLICK handlers.

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!

The event gets eaten but is not because of EVT_LIST_ITEM_RIGHT_CLICK, commenting the binding of the EVT_LIST_ITEM_RIGHT_CLICK doesn't solve the problem...

···

On Thu, 12 Aug 2004 08:09:17 -0700, Robin Dunn <robin@alldunn.com> wrote:

Peter Damoc wrote:

Huston, we have a problem:
actualy there are 2 problems :slight_smile:
attached is the file that illustrates them:
1. OnRightUp gets called ONLY when there is a double rigth click

Because the mouse event is getting eaten because of the EVT_LIST_ITEM_RIGHT_CLICK, (even with the evt.Skip() call.) I'm not sure if it is the native control's fault or wx code, but it's always been this way.

--
Peter Damoc
Hacker Wannabe
http://www.sigmacore.net/