You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to make an CutOut on a Widget inside a Table (inside a Collapsible) and the CutOut did not appear. After Debugging I found that the CutOut had a wrong top value -800 something pixels.
I fixed it by Overriding MaterialCutOut:setupCutOutPosition with an Addition:
private static native int top(Element element) /*-{
return element.getBoundingClientRect().top;
}-*/;
private static native int left(Element element) /*-{
return element.getBoundingClientRect().left;
}-*/;
protected void setupCutOutPosition(Element cutOut, Element relativeTo, int padding, boolean circle) {
float top = relativeTo.getOffsetTop() - (Math.max($("html").scrollTop(), $("body").scrollTop()));
float left = relativeTo.getAbsoluteLeft();
float width = relativeTo.getOffsetWidth();
float height = relativeTo.getOffsetHeight();
if(left < 0 || top < 0) {
top = top(relativeTo);
left = left(relativeTo);
}
if (circle) {
…
Now it works as expected
The text was updated successfully, but these errors were encountered:
I tried to make an CutOut on a Widget inside a Table (inside a Collapsible) and the CutOut did not appear. After Debugging I found that the CutOut had a wrong top value -800 something pixels.
I fixed it by Overriding MaterialCutOut:setupCutOutPosition with an Addition:
Now it works as expected
The text was updated successfully, but these errors were encountered: