From f897837e552ac7d658988a405cf9e9ef69e381cb Mon Sep 17 00:00:00 2001 From: Chris Michael Date: Tue, 21 Jul 2015 09:43:53 -0400 Subject: [PATCH] elementary: Fix T2573: Extra blank line in Genlist Dnd Test Summary: This fixes ticket T2573 where an extra new line was being added after dropping an item in the Genlist DnD tests. There's really no need to be appending a '\n' on each item here as that ends up adding an extra blank item to the drop. @fix Signed-off-by: Chris Michael --- legacy/elementary/src/bin/test_dnd.c | 1 - 1 file changed, 1 deletion(-) diff --git a/legacy/elementary/src/bin/test_dnd.c b/legacy/elementary/src/bin/test_dnd.c index 05369e2508..4b6124a100 100644 --- a/legacy/elementary/src/bin/test_dnd.c +++ b/legacy/elementary/src/bin/test_dnd.c @@ -84,7 +84,6 @@ _drag_data_build(Eina_List **items) { strcat((char *) drag_data, FILESEP); strcat((char *) drag_data, t); - strcat((char *) drag_data, "\n"); } } }