mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2024-11-10 01:01:56 +01:00
fix: Disabled opacity of Manager's update button had a typo
This commit is contained in:
parent
de59641ede
commit
4915e9b921
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ class _LatestCommitCardState extends State<LatestCommitCard> {
|
|||
future: locator<HomeViewModel>().hasManagerUpdates(),
|
||||
initialData: false,
|
||||
builder: (context, snapshot) => Opacity(
|
||||
opacity: snapshot.hasData && snapshot.data! ? 1.0 : 1.0,
|
||||
opacity: snapshot.hasData && snapshot.data! ? 1.0 : 0.5,
|
||||
child: CustomMaterialButton(
|
||||
isExpanded: false,
|
||||
label: I18nText('latestCommitCard.updateButton'),
|
||||
|
|
Loading…
Reference in a new issue