Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
shirne committed Sep 23, 2023
1 parent cb0ff64 commit 212d990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class ProgressController extends OverlayController<double> {
double get value => min(1, aController?.value ?? _value);

@override
bool get isClose => completed || value >= 1;
bool get isClose => value >= 1;
}

class EntryController extends OverlayController<bool> {
Expand Down

0 comments on commit 212d990

Please sign in to comment.