Use rubberband for box selection

This commit is contained in:
wmayer
2013-07-02 10:04:33 +02:00
parent d78d5783c4
commit b737eeb52d
7 changed files with 24 additions and 20 deletions

View File

@@ -1068,6 +1068,9 @@ void NavigationStyle::startSelection(NavigationStyle::SelectionMode mode)
case Rectangle:
mouseSelection = new RectangleSelection();
break;
case Rubberband:
mouseSelection = new RubberbandSelection();
break;
case BoxZoom:
mouseSelection = new BoxZoomSelection();
break;