From 2ea428a54193cbbd46c8b364fbe0d10687b19f41 Mon Sep 17 00:00:00 2001 From: Alexander Larsson Date: Wed, 6 Feb 2019 10:14:48 +0100 Subject: [PATCH] Revert "cli transaction: Make the checks green" This reverts commit e209ac9e10b332760066c5d4c06976380b15d86b. We're counting thee escape sequences as width, until we fix this we disable this. Closes: #2686 Approved by: alexlarsson --- app/flatpak-cli-transaction.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/flatpak-cli-transaction.c b/app/flatpak-cli-transaction.c index 35c49e0a..3a1888b2 100644 --- a/app/flatpak-cli-transaction.c +++ b/app/flatpak-cli-transaction.c @@ -422,9 +422,9 @@ operation_done (FlatpakTransaction *transaction, FlatpakTransactionOperationType op_type = flatpak_transaction_operation_get_operation_type (op); if (op_type == FLATPAK_TRANSACTION_OPERATION_UNINSTALL) - set_op_progress (self, op, FLATPAK_ANSI_GREEN "-" FLATPAK_ANSI_COLOR_RESET); + set_op_progress (self, op, "-"); else - set_op_progress (self, op, FLATPAK_ANSI_GREEN "✓" FLATPAK_ANSI_COLOR_RESET); + set_op_progress (self, op, "✓"); if (flatpak_fancy_output ()) redraw (self);