From b90cfefa243a07208d719c8612e73cb15b34974c Mon Sep 17 00:00:00 2001
From: alfrix <alfredomonclus@gmail.com>
Date: Thu, 9 May 2024 09:03:09 -0300
Subject: [PATCH] move: add tooltips

---
 panels/move.py | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/panels/move.py b/panels/move.py
index e01c32c7..6a09cfd5 100644
--- a/panels/move.py
+++ b/panels/move.py
@@ -134,6 +134,7 @@ class Panel(ScreenPanel):
                     "section": "main",
                     "name": _("Invert X"),
                     "type": "binary",
+                    "tooltip": _("This will affect screw positions and mesh graph"),
                     "value": "False",
                     "callback": self.reinit_panels,
                 }
@@ -143,6 +144,7 @@ class Panel(ScreenPanel):
                     "section": "main",
                     "name": _("Invert Y"),
                     "type": "binary",
+                    "tooltip": _("This will affect screw positions and mesh graph"),
                     "value": "False",
                     "callback": self.reinit_panels,
                 }
@@ -160,6 +162,7 @@ class Panel(ScreenPanel):
                     "section": "main",
                     "name": _("XY Speed (mm/s)"),
                     "type": "scale",
+                    "tooltip": _("Only for the move panel"),
                     "value": "50",
                     "range": [1, max_velocity],
                     "step": 1,
@@ -170,6 +173,7 @@ class Panel(ScreenPanel):
                     "section": "main",
                     "name": _("Z Speed (mm/s)"),
                     "type": "scale",
+                    "tooltip": _("Only for the move panel"),
                     "value": "10",
                     "range": [1, max_z_velocity],
                     "step": 1,