Add vertical padding to topic text view

This commit is contained in:
2026-04-09 10:56:39 -06:00
parent e237df31f4
commit a14026f0d1

View File

@@ -3152,8 +3152,8 @@ mg_create_topicbar (session *sess, GtkWidget *box)
gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (topic), GTK_WRAP_WORD_CHAR); gtk_text_view_set_wrap_mode (GTK_TEXT_VIEW (topic), GTK_WRAP_WORD_CHAR);
gtk_text_view_set_left_margin (GTK_TEXT_VIEW (topic), 4); gtk_text_view_set_left_margin (GTK_TEXT_VIEW (topic), 4);
gtk_text_view_set_right_margin (GTK_TEXT_VIEW (topic), 4); gtk_text_view_set_right_margin (GTK_TEXT_VIEW (topic), 4);
gtk_text_view_set_top_margin (GTK_TEXT_VIEW (topic), 0); gtk_text_view_set_top_margin (GTK_TEXT_VIEW (topic), 4);
gtk_text_view_set_bottom_margin (GTK_TEXT_VIEW (topic), 0); gtk_text_view_set_bottom_margin (GTK_TEXT_VIEW (topic), 4);
gtk_text_view_set_pixels_above_lines (GTK_TEXT_VIEW (topic), 0); gtk_text_view_set_pixels_above_lines (GTK_TEXT_VIEW (topic), 0);
gtk_text_view_set_pixels_below_lines (GTK_TEXT_VIEW (topic), 0); gtk_text_view_set_pixels_below_lines (GTK_TEXT_VIEW (topic), 0);
gtk_text_view_set_pixels_inside_wrap (GTK_TEXT_VIEW (topic), 0); gtk_text_view_set_pixels_inside_wrap (GTK_TEXT_VIEW (topic), 0);