From 1d00520854312c143d0d9470d2a06e478355100e Mon Sep 17 00:00:00 2001 From: Requiem4Eternity <271505399@qq.com> Date: Mon, 18 Oct 2021 16:05:12 +0800 Subject: [PATCH] fix change row issue --- lib/src/generator.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/src/generator.dart b/lib/src/generator.dart index 6b464a6..1755c7b 100644 --- a/lib/src/generator.dart +++ b/lib/src/generator.dart @@ -559,7 +559,7 @@ class Generator { bytes += emptyLines(1); if (isNextRow) { - row(nextRow); + bytes += row(nextRow); } return bytes; }