Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Commit

Permalink
Revert "correcting minor issue"
Browse files Browse the repository at this point in the history
This reverts commit 0dc220d.
  • Loading branch information
4inka committed Jun 23, 2022
1 parent 42b0eb4 commit d02c64f
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions lib/easy_autocomplete.dart
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,7 @@ class _EasyAutocompleteState extends State<EasyAutocomplete> {
void closeOverlay() {
if (_hasOpenedOverlay) {
_overlayEntry!.remove();
setState(() {
_previousAsyncSearchText = '';
_hasOpenedOverlay = false;
});
setState(() => _hasOpenedOverlay = false);
}
}

Expand Down

0 comments on commit d02c64f

Please sign in to comment.