Tooltip: fixed on NColorPicker palette and slider

This commit is contained in:
Lemmy
2025-12-28 00:39:34 -05:00
parent 15ef3e4299
commit 6fe8699513
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -709,7 +709,7 @@ Popup {
hoverEnabled: true
onEntered: {
TooltipService.show(screen, parent, modelData.name + "\n" + parent.color.toString().toUpperCase(), "auto");
TooltipService.show(parent, modelData.name + "\n" + parent.color.toString().toUpperCase(), "auto");
}
onExited: {
TooltipService.hide();
+1 -1
View File
@@ -152,7 +152,7 @@ Slider {
onEntered: {
root.hovering = true;
if (root.tooltipText) {
TooltipService.show(screen, knob, root.tooltipText, root.tooltipDirection);
TooltipService.show(knob, root.tooltipText, root.tooltipDirection);
}
}