don't override non-default cursors in native controls when no wxCursor is set, a regression introduced by r75690

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75755 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett 2014-02-01 17:08:25 +00:00
parent 98bf1dae9b
commit 7b1f4ba70a

View File

@ -2067,7 +2067,8 @@ void wxWindowGTK::GTKHandleRealized()
event.SetEventObject( this );
GTKProcessEvent( event );
GTKUpdateCursor();
if (m_cursor.IsOk())
GTKUpdateCursor();
if (m_wxwindow && IsTopLevel())
{