revert tile extent init size
This commit is contained in:
parent
c26e6bcbcf
commit
3ee97ca77d
1 changed files with 2 additions and 1 deletions
|
@ -24,7 +24,8 @@ class TileExtentController {
|
|||
required this.spacing,
|
||||
required this.horizontalPadding,
|
||||
}) {
|
||||
extentNotifier = ValueNotifier(extentMin);
|
||||
// initialize extent to 0, so that it will be dynamically sized on first launch
|
||||
extentNotifier = ValueNotifier(0);
|
||||
userPreferredExtent = settings.getTileExtent(settingsRouteKey);
|
||||
settings.addListener(_onSettingsChanged);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue