2D Plater: Added double-click handler.

This commit is contained in:
Joseph Lenox 2018-05-12 16:05:22 -05:00 committed by Joseph Lenox
parent f8827b392d
commit 5938a5bf4c

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() {