From 4a34ffb8985cd74b046618a76aa7a44e330b4dee Mon Sep 17 00:00:00 2001 From: cxl Date: Mon, 9 Mar 2020 18:11:00 +0000 Subject: [PATCH] CtrlLib: Reverted invalid 'fix' in ArrayCtrl::AsText git-svn-id: svn://ultimatepp.org/upp/trunk@14145 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/CtrlLib/ArrayCtrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/CtrlLib/ArrayCtrl.cpp b/uppsrc/CtrlLib/ArrayCtrl.cpp index 0ce3d1a79..79025139d 100644 --- a/uppsrc/CtrlLib/ArrayCtrl.cpp +++ b/uppsrc/CtrlLib/ArrayCtrl.cpp @@ -3018,7 +3018,7 @@ String ArrayCtrl::AsText(String (*format)(const Value&), bool sel, bool next = false; for(int r = 0; r < GetCount(); r++) if(!sel || IsSel(r)) { - if(!next) + if(next) txt << row; for(int i = 0; i < GetColumnCount(); i++) { if(i)