removed unneeded 'auto' since it's by default

This commit is contained in:
Corey Woodworth
2025-11-21 22:43:03 -05:00
parent 42f782abbf
commit 89d7a63248

View File

@@ -637,7 +637,7 @@ Popup {
hoverEnabled: true
onEntered: {
TooltipService.show(parent, modelData.name + "\n" + parent.color.toString().toUpperCase(), "auto");
TooltipService.show(parent, modelData.name + "\n" + parent.color.toString().toUpperCase());
}
onExited: {
TooltipService.hide();