From 13b0d4d7bdb674d0e51a6d595abd1e7bf2691bf9 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 8 Nov 2018 21:16:23 +0100 Subject: [PATCH] format-table: when duplicating a cell, also copy the color --- src/shared/format-table.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/shared/format-table.c b/src/shared/format-table.c index 10e15c9d70..38dfb145c9 100644 --- a/src/shared/format-table.c +++ b/src/shared/format-table.c @@ -398,6 +398,8 @@ static int table_dedup_cell(Table *t, TableCell *cell) { if (!nd) return -ENOMEM; + nd->color = od->color; + table_data_unref(od); t->data[i] = nd;