Added more padding to the height when --lines is used

This commit is contained in:
Scoopta 2020-05-10 20:57:32 -07:00
parent eac302cd2b
commit 6019f46199

View File

@ -472,7 +472,7 @@ static void widget_allocate(GtkWidget* widget, GdkRectangle* allocation, gpointe
} }
if(lines > 0) { if(lines > 0) {
height = max_height * lines; height = max_height * lines;
++height; height += 5;
update_surface_size(); update_surface_size();
} }
} }