From 2047b5c658421fe0471f9eb39c0efe1577b4409f Mon Sep 17 00:00:00 2001 From: anon Date: Tue, 17 Sep 2024 16:31:07 +0530 Subject: [PATCH] formatting fix --- lib/src/model/board_editor/board_editor_controller.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/model/board_editor/board_editor_controller.dart b/lib/src/model/board_editor/board_editor_controller.dart index e7b636b68a..2ac5f9fe4e 100644 --- a/lib/src/model/board_editor/board_editor_controller.dart +++ b/lib/src/model/board_editor/board_editor_controller.dart @@ -76,7 +76,7 @@ class BoardEditorController extends _$BoardEditorController { setSideToPlay(splits[1].toLowerCase() == 'w' ? Side.white : Side.black); } - if(loadCastling && splits.length >= 3) { + if (loadCastling && splits.length >= 3) { final castling = splits[2]; setCastling(Side.white, CastlingSide.king, castling.contains('K')); setCastling(Side.white, CastlingSide.queen, castling.contains('Q'));