Rumei 6 éve
szülő
commit
6a772e547c
1 módosított fájl, 2 hozzáadás és 2 törlés
  1. 2 2
      SketchAssistant/SketchAssistantWPF/MVP_Model.cs

+ 2 - 2
SketchAssistant/SketchAssistantWPF/MVP_Model.cs

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