+void wxRibbonGallery::OnMouseDClick(wxMouseEvent& evt)
+{
+ // The 2nd click of a double-click should be handled as a click in the
+ // same way as the 1st click of the double-click. This is useful for
+ // scrolling through the gallery.
+ OnMouseDown(evt);
+ OnMouseUp(evt);
+}
+