as the subject says, splitter.SetSashSize doesn't work. I have the strange feeling that I've reported this already but I cannot find my post... anyways... I might have forgot to report it
Specs: Win XP SP1, py2.3.4, wxpy 2.5.3.1u
also... bonus... the bug is also present on a 2.5.3.1u on Ubuntu Hoary
as the subject says, splitter.SetSashSize doesn't work. I have the strange feeling that I've reported this already but I cannot find my post... anyways... I might have forgot to report it
Specs: Win XP SP1, py2.3.4, wxpy 2.5.3.1u
also... bonus... the bug is also present on a 2.5.3.1u on Ubuntu Hoary
It looks like that and SetBorderSize are currently NOPs. The sash is now being draw by a platfrom specifc renderer class instead of being drawn by the SplitterWindow:
// Sets the sash size
void SetSashSize(int WXUNUSED(width)) { }
// Sets the border size
void SetBorderSize(int WXUNUSED(width)) { }
路路路
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
well.... is there a work around? How do I set the sash width? Right now the sash is too thin and it is a accessibility problem for my program... I want it to be at least 15-20 pixel wide.
路路路
On Wed, 24 Nov 2004 09:23:45 -0800, Robin Dunn <robin@alldunn.com> wrote:
Peter Damoc wrote:
as the subject says, splitter.SetSashSize doesn't work. I have the
strange feeling that I've reported this already but I cannot find my
post... anyways... I might have forgot to report it
Specs: Win XP SP1, py2.3.4, wxpy 2.5.3.1u
also... bonus... the bug is also present on a 2.5.3.1u on Ubuntu Hoary
It looks like that and SetBorderSize are currently NOPs. The sash is
now being draw by a platfrom specifc renderer class instead of being
drawn by the SplitterWindow:
// Sets the sash size
void SetSashSize(int WXUNUSED(width)) { }
// Sets the border size
void SetBorderSize(int WXUNUSED(width)) { }
On Wed, 24 Nov 2004 09:23:45 -0800, Robin Dunn <robin@alldunn.com> wrote:
Peter Damoc wrote:
as the subject says, splitter.SetSashSize doesn't work. I have the
strange feeling that I've reported this already but I cannot find my
post... anyways... I might have forgot to report it
Specs: Win XP SP1, py2.3.4, wxpy 2.5.3.1u
also... bonus... the bug is also present on a 2.5.3.1u on Ubuntu Hoary
It looks like that and SetBorderSize are currently NOPs. The sash is
now being draw by a platfrom specifc renderer class instead of being
drawn by the SplitterWindow:
// Sets the sash size
void SetSashSize(int WXUNUSED(width)) { }
// Sets the border size
void SetBorderSize(int WXUNUSED(width)) { }
well.... is there a work around? How do I set the sash width?
It looks like there isn't a way to do it currently.
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!
> Peter Damoc wrote:
>> well.... is there a work around? How do I set the sash width?
>
> It looks like there isn't a way to do it currently.
>
This is a usability issue for me... the sash as it is now is very thin....
Should I implement my own SplitterWindow or sould I wait a couple of weeks?
You can't (currently?) do it from Python, but the renderer that
handles the drawing of the sash is replaceable at runtime. Is an
extension module workable?
路路路
On Wed, 01 Dec 2004 09:23:01 +0200, Peter Damoc <pdamoc@gmx.net> wrote:
On Tue, 30 Nov 2004 13:16:11 -0800, Robin Dunn <robin@alldunn.com> wrote: