mousehighlight: don't show tooltip on sliding puzzles
This commit is contained in:
@@ -88,6 +88,12 @@ class MouseHighlightOverlay extends Overlay
|
|||||||
case "Cancel":
|
case "Cancel":
|
||||||
case "Continue":
|
case "Continue":
|
||||||
return null;
|
return null;
|
||||||
|
case "Move":
|
||||||
|
// Hide overlay on sliding puzzle boxes
|
||||||
|
if (target.contains("Sliding piece"))
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
tooltipManager.add(new Tooltip(option + " " + target));
|
tooltipManager.add(new Tooltip(option + " " + target));
|
||||||
|
|||||||
Reference in New Issue
Block a user