Skip to content

Commit

Permalink
Fixed - Material ComboBox bug: isEnabled is not working, always retur…
Browse files Browse the repository at this point in the history
…ns true #195
  • Loading branch information
kevzlou7979 committed Feb 1, 2017
1 parent b7d69ec commit c6dc59d
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,11 @@ public void setEnabled(boolean enabled) {
listbox.setEnabled(enabled);
}

@Override
public boolean isEnabled() {
return listbox.isEnabled();
}

/**
* Check if allow clear option is enabled
*/
Expand Down

0 comments on commit c6dc59d

Please sign in to comment.