allow TABbing into multiline text controls even if they're not editable
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1564,8 +1564,10 @@ bool wxTextCtrl::AdjustSpaceLimit()
|
|||||||
|
|
||||||
bool wxTextCtrl::AcceptsFocus() const
|
bool wxTextCtrl::AcceptsFocus() const
|
||||||
{
|
{
|
||||||
// we don't want focus if we can't be edited
|
// we don't want focus if we can't be edited unless we're a multiline
|
||||||
return IsEditable() && wxControl::AcceptsFocus();
|
// control because then it might be still nice to get focus from keyboard
|
||||||
|
// to be able to scroll it without mouse
|
||||||
|
return (IsEditable() || IsMultiLine()) && wxControl::AcceptsFocus();
|
||||||
}
|
}
|
||||||
|
|
||||||
wxSize wxTextCtrl::DoGetBestSize() const
|
wxSize wxTextCtrl::DoGetBestSize() const
|
||||||
|
Reference in New Issue
Block a user