Rumei před 6 roky
rodič
revize
6a772e547c
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      SketchAssistant/SketchAssistantWPF/MVP_Model.cs

+ 2 - 2
SketchAssistant/SketchAssistantWPF/MVP_Model.cs

@@ -462,7 +462,7 @@ namespace SketchAssistantWPF
                 cursorPositions.Enqueue(currentCursorPosition);
             }
             //Drawing
-            if (inDrawingMode && programPresenter.IsMousePressed() && !optiTrackInUse)
+            if (inDrawingMode && programPresenter.IsMousePressed())
             {
                 if (!optiTrackInUse)
                 {
@@ -477,7 +477,7 @@ namespace SketchAssistantWPF
 
             }
             //Deleting
-            if (!inDrawingMode && programPresenter.IsMousePressed() && !optiTrackInUse)
+            if (!inDrawingMode && programPresenter.IsMousePressed())
             {
                 List<Point> uncheckedPoints;
                 if (!optiTrackInUse)