talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit c342456b81c5889cbfaf02527a977b329cad0245
parent 20caa23f6dad39ecdca12ab22140e4f8bb84dd94
Author: paul <paul@claws-mail.org>
Date:   Mon, 17 Aug 2020 13:12:58 +0100

fix bug 4197, 'Vertical icon-bar for parts of the message disappears when the window is too small'

Diffstat:
Msrc/summaryview.c | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/src/summaryview.c b/src/summaryview.c @@ -1,6 +1,6 @@ /* * Claws Mail -- a GTK+ based, lightweight, and fast e-mail client - * Copyright (C) 1999-2019 the Claws Mail team and Hiroyuki Yamamoto + * Copyright (C) 1999-2020 the Claws Mail team and Hiroyuki Yamamoto * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -2646,6 +2646,9 @@ static void summary_status_show(SummaryView *summaryview) toolbar_main_set_sensitive(summaryview->mainwin); return; } + gtk_label_set_ellipsize(GTK_LABEL(summaryview->statlabel_folder), PANGO_ELLIPSIZE_END); + gtk_label_set_ellipsize(GTK_LABEL(summaryview->statlabel_select), PANGO_ELLIPSIZE_END); + gtk_label_set_ellipsize(GTK_LABEL(summaryview->statlabel_msgs), PANGO_ELLIPSIZE_START); rowlist = GTK_CMCLIST(summaryview->ctree)->selection; for (cur = rowlist; cur != NULL && cur->data != NULL; cur = cur->next) {