I'm calling grid.SetCellHighlightPenWidth(1) but I get a C++ assertion:
[...]
I'm using wxPython 2.8.0.1.
Please try it in 2.8.3.0. If it still fails there then please make a small runnable sample that demonstrates the problem.
In 2.8.3.0 you can modify GridSimple.py and append the following to the end of the __init__ method:
self.SetCellHighlightPenWidth(3)
Ok thanks. I was trying it later in the process but I didn't see it because the bug is that it is trying to get the width/height of the current cell before there is a current cell set. I've implemented a fix.
···
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
I'm calling grid.SetCellHighlightPenWidth(1) but I get a C++ assertion:
[...]
I'm using wxPython 2.8.0.1.
Please try it in 2.8.3.0. If it still fails there then please make a small runnable sample that demonstrates the problem.
In 2.8.3.0 you can modify GridSimple.py and append the following to the end of the __init__ method:
self.SetCellHighlightPenWidth(3)
Ok thanks. I was trying it later in the process but I didn't see it because the bug is that it is trying to get the width/height of the current cell before there is a current cell set. I've implemented a fix.
I was hoping for it to be on the python side, rather than c++ so I could apply it easily over 2.8.0.1. Do you have any time estimation for the following bug?