Removed workaround for a (now fixed) wxMotif problem.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22279 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2003-07-24 19:35:55 +00:00
parent 728c62b66d
commit 7918efb247

View File

@@ -533,13 +533,6 @@ bool wxNotebook::RefreshLayout(bool force)
if ( pPage->GetAutoLayout() )
pPage->Layout();
}
// MBN: this is probably just hiding a problem under the carpet,
// but: with OpenMotif 2.2 (not Lesstif), not moving the window
// may cause the tabs to be not clickable.
else
{
pPage->Move(clientRect.x, clientRect.y);
}
}
Refresh();
}