فهرست منبع

perf(01-01): remove MouseArea console.log spam in main.qml

- Remove console.log from onPressed handler
- Remove console.log from onPositionChanged handler
- Remove console.log from onClicked handler
- Keep backend.resetActivityTimer() calls for screen timeout
tuanchris 1 هفته پیش
والد
کامیت
e3b1f2aa22
1فایلهای تغییر یافته به همراه2 افزوده شده و 5 حذف شده
  1. 2 5
      dune-weaver-touch/qml/main.qml

+ 2 - 5
dune-weaver-touch/qml/main.qml

@@ -95,17 +95,14 @@ ApplicationWindow {
         propagateComposedEvents: true
         
         onPressed: {
-            console.log("🖥️ QML: Touch/press detected - resetting activity timer")
             backend.resetActivityTimer()
         }
-        
+
         onPositionChanged: {
-            console.log("🖥️ QML: Mouse movement detected - resetting activity timer")
             backend.resetActivityTimer()
         }
-        
+
         onClicked: {
-            console.log("🖥️ QML: Click detected - resetting activity timer")
             backend.resetActivityTimer()
         }
     }