talons

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

commit 51b1ddd8b8e2a5dddcba722411caf7d03265ce78
parent 4cf4686f09079e2d17a9457a94577b4ad38aafcc
Author: paul <paul@claws-mail.org>
Date:   Fri, 10 Jul 2020 10:03:02 +0100

prevent unwanted vertical movement when text is pushed to statutusbar

Diffstat:
Msrc/statusbar.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/src/statusbar.c b/src/statusbar.c @@ -47,6 +47,9 @@ GtkWidget *statusbar_create(void) GtkWidget *hbox; statusbar = gtk_statusbar_new(); + + gtk_widget_set_margin_top(GTK_WIDGET(statusbar), 0); + gtk_widget_set_margin_bottom(GTK_WIDGET(statusbar), 0); statusbar_list = g_list_append(statusbar_list, statusbar); gtk_container_set_border_width(GTK_CONTAINER(statusbar), 1); child = gtk_statusbar_get_message_area(GTK_STATUSBAR(statusbar));