(boolean hideUnmappedA)
| 397 | } |
| 398 | |
| 399 | public void setHideUnmappedA(boolean hideUnmappedA) { |
| 400 | if (this.hideUnmappedA == hideUnmappedA) return; |
| 401 | |
| 402 | this.hideUnmappedA = hideUnmappedA; |
| 403 | |
| 404 | for (IGuiComponent c : components) { |
| 405 | c.onViewChange(ViewChangeCause.DISPLAY_CLASSES_CHANGED); |
| 406 | } |
| 407 | } |
| 408 | |
| 409 | public void updateCss() { |
| 410 | if (lastSwitchedToTheme != null) { |
nothing calls this directly
no test coverage detected