Skip to content

Commit

Permalink
fix(lock_item_icon.dart): Use actual size and color arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
rlperez committed Dec 6, 2021
1 parent ebea44c commit cceea78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/assets/traits/lock_item_icon.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ class LockIcon extends StatelessWidget {
color = WidgetStyleConstants.deviceIconColor,
Key? key})
: super(key: key) {
this._size = WidgetStyleConstants.defaultDeviceIconSize;
this._color = WidgetStyleConstants.deviceIconColor;
this._size = size;
this._color = color;
this._locked = isLocked;
}

Expand Down

0 comments on commit cceea78

Please sign in to comment.