(int index, boolean enabled)
| 166 | } |
| 167 | |
| 168 | public void setButtonEnabled(int index, boolean enabled) { |
| 169 | FButton button = getButton(index); |
| 170 | if (button != null) { |
| 171 | button.setEnabled(enabled); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | @Override |
| 176 | public boolean preventInputBehindOverlay() { |
no test coverage detected