Skip to content

Commit c842911

Browse files
fix: await calls to change overlap in example (#468)
1 parent e84442c commit c842911

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

example/lib/place_symbol.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,8 @@ class PlaceSymbolBodyState extends State<PlaceSymbolBody> {
260260
setState(() {
261261
_iconAllowOverlap = !_iconAllowOverlap;
262262
});
263-
controller!.setSymbolIconAllowOverlap(_iconAllowOverlap);
264-
controller!.setSymbolTextAllowOverlap(_iconAllowOverlap);
263+
await controller!.setSymbolIconAllowOverlap(_iconAllowOverlap);
264+
await controller!.setSymbolTextAllowOverlap(_iconAllowOverlap);
265265
}
266266

267267
@override

0 commit comments

Comments
 (0)