modify the listbasetest.(10,5) is not a correct position in wxUniv/x11 listbase test. (10, 10) could work both on wxUniv/x11 and other ports(already tested)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77820 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-09-23 17:42:15 +00:00
parent fe733e34c2
commit d9b0c17412

View File

@@ -220,7 +220,7 @@ void ListBaseTestCase::ItemClick()
list->GetItemRect(0, pos);
//We move in slightly so we are not on the edge
wxPoint point = list->ClientToScreen(pos.GetPosition()) + wxPoint(10, 5);
wxPoint point = list->ClientToScreen(pos.GetPosition()) + wxPoint(10, 10);
sim.MouseMove(point);
wxYield();
@@ -417,6 +417,8 @@ void ListBaseTestCase::EditLabel()
list->EditLabel(0);
sim.Text("sometext");
wxYield();
sim.Char(WXK_RETURN);
wxYield();