Dave Page napsal(a):
>
>
> Yeah, that's basically what I saw on GTK/Linux with 2.7.1. Does the AUI
> sample work OK?
Yes, auidemo works fine.
I look on source coud and problem is probably there (src/aui/dockart.cpp):
// default metric values
#if defined(__WXMAC__)
SInt32 height;
GetThemeMetric( kThemeMetricSmallPaneSplitterHeight , &height );
m_sash_size = height;
#elif defined(__WXGTK__)
m_sash_size =
wxRendererNative::Get().GetSplitterParams(NULL).widthSash;
#else
m_sash_size = 4;
#endif
The GetSplitterParams in this case call
wxRendererGeneric::GetSplitterParams instead
wxRendererGTK::GetSplitterParams. It should be some problem with correct
virtual method lookup or wrong renderer setup?
Zdenek