From 6019f461996140e85a842de840d8d1ad7d46ced5 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Sun, 10 May 2020 20:57:32 -0700 Subject: [PATCH] Added more padding to the height when --lines is used --- src/wofi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wofi.c b/src/wofi.c index fbf0493..a4a2736 100644 --- a/src/wofi.c +++ b/src/wofi.c @@ -472,7 +472,7 @@ static void widget_allocate(GtkWidget* widget, GdkRectangle* allocation, gpointe } if(lines > 0) { height = max_height * lines; - ++height; + height += 5; update_surface_size(); } }