2D Plater: Added double-click handler.

This commit is contained in:
Joseph Lenox 2018-05-12 16:05:22 -05:00
parent f1ec1f068f
commit ca0e39d7e7

View File

@ -220,6 +220,9 @@ void Plate2D::mouse_up(wxMouseEvent& e) {
}
}
void Plate2D::mouse_dclick(wxMouseEvent& e) {
if (e.LeftDClick()) {
this->on_double_click();
}
}
void Plate2D::set_colors() {