improve wxqt behavior

This commit is contained in:
Sean D'Epagnier
2016-08-24 16:01:53 -04:00
committed by Vadim Zeitlin
parent 8be71bd900
commit e7ca3220f3
2 changed files with 1 additions and 1 deletions

View File

@@ -31,6 +31,7 @@ public:
wxQtMainWindow( wxWindow *parent, wxFrame *handler );
private:
virtual bool focusNextPrevChild(bool) { return false; }
};
// Central widget helper (container to show scroll bars and receive events):

View File

@@ -51,7 +51,6 @@ bool wxStaticText::Create(wxWindow *parent,
m_qtLabel->setBuddy( m_qtLabel );
m_qtLabel->setTextInteractionFlags( Qt::NoTextInteraction );
m_qtLabel->setWordWrap( true );
return QtCreateControl( parent, id, pos, size, style, wxDefaultValidator, name );
}