]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk/listbox.cpp
added more properties
[wxWidgets.git] / src / gtk / listbox.cpp
index 884593028c555784eef9835d1fffacd7cb7444fb..75a80a78a713b618835afaad13c6dff21d7449e8 100644 (file)
@@ -1022,7 +1022,7 @@ int wxListBox::DoListHitTest(const wxPoint& point) const
 {
     // gtk_tree_view_get_path_at_pos() also gets items that are not visible and
     // we only want visible items we need to check for it manually here
-    if ( !GetClientRect().Inside(point) )
+    if ( !GetClientRect().Contains(point) )
         return wxNOT_FOUND;
 
     // need to translate from master window since it is in client coords