Code: Select all
m_Output = new wxTextCtrl( this, wxID_ANY, "", wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE | wxTE_READONLY | wxTE_DONTWRAP | wxTE_RICH );
On OS-X, the space for the scroll bar is there, but the scroll bar itself never shows up. If I remove the wxTE_DONTWRAP style, it will wrap long lines to the control width, and adjust if I resize the control. With the wxTE_DONTWRAP, it doesn't wrap the text, and I can scroll manually by drag selecting with the mouse. But I never see the horizontal scrollbar or the arrow buttons to move it.
This happens on both Intel and PPC macs, running OS-X 10.5
Any ideas? Am I missing something silly? Thanks
-robin