From bb17ea5786f2131044ddc3a73fcacf803df93400 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Fri, 28 Dec 2018 09:05:42 -0500 Subject: [PATCH] remote-ls: Ellipsize the same columns as list The columns show the same content, so we should treat them the same for sizing. Closes: #2497 Approved by: matthiasclasen --- app/flatpak-builtins-remote-ls.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/app/flatpak-builtins-remote-ls.c b/app/flatpak-builtins-remote-ls.c index dd56b439..baee0e3f 100644 --- a/app/flatpak-builtins-remote-ls.c +++ b/app/flatpak-builtins-remote-ls.c @@ -127,6 +127,12 @@ ls_remote (GHashTable *refs_hash, const char **arches, const char *app_runtime, flatpak_table_printer_set_column_ellipsize (printer, find_column (columns, "description", NULL), FLATPAK_ELLIPSIZE_MODE_END); + flatpak_table_printer_set_column_ellipsize (printer, + find_column (columns, "application", NULL), + FLATPAK_ELLIPSIZE_MODE_END); + flatpak_table_printer_set_column_ellipsize (printer, + find_column (columns, "options", NULL), + FLATPAK_ELLIPSIZE_MODE_END); if (app_runtime) {