Commit 91ea38bc564f284c3994463530e94847ff2d2bd1
1 parent
b4a359d6
Exists in
interactor_style
Added a comment to DefaultInteractorStyle
Showing
1 changed file
with
3 additions
and
1 deletions
Show diff stats
invesalius/data/styles.py
... | ... | @@ -56,7 +56,9 @@ class BaseImageInteractorStyle(vtk.vtkInteractorStyleImage): |
56 | 56 | |
57 | 57 | class DefaultInteractorStyle(BaseImageInteractorStyle): |
58 | 58 | """ |
59 | - Interactor style responsible for zoom the camera. | |
59 | + Interactor style responsible for Default functionalities: | |
60 | + * Zoom moving mouse with right button pressed; | |
61 | + * Change the slices with the scroll. | |
60 | 62 | """ |
61 | 63 | def __init__(self, viewer): |
62 | 64 | BaseImageInteractorStyle.__init__(self) | ... | ... |