mixins: renderWidgetLayer: skip hidden widgets

This commit is contained in:
Hydrox6
2019-04-19 08:51:40 -04:00
committed by Adam
parent 1cdb48406c
commit d7e0e11e73
@@ -1335,7 +1335,7 @@ public abstract class RSClientMixin implements RSClient
for (Widget rlWidget : widgets) for (Widget rlWidget : widgets)
{ {
RSWidget widget = (RSWidget) rlWidget; RSWidget widget = (RSWidget) rlWidget;
if (widget == null || widget.getRSParentId() != parentId) if (widget == null || widget.getRSParentId() != parentId || widget.isSelfHidden())
{ {
continue; continue;
} }