Commit 291fd00d authored by Victor Ananjesky's avatar Victor Ananjesky

add fix of progress log from BrandonH <bhaberfeld@gmail.com>

parent cf7b6e39
......@@ -194,6 +194,9 @@ progress_create_widget (GtkWidget * dlg)
sw = gtk_scrolled_window_new (NULL, NULL);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (sw), GTK_SHADOW_ETCHED_IN);
gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (sw), options.hscroll_policy, options.vscroll_policy);
#if GTK_CHECK_VERSION(3,22,0)
gtk_scrolled_window_set_propagate_natural_height (GTK_SCROLLED_WINDOW (sw), TRUE);
#endif
gtk_container_add (GTK_CONTAINER (ex), sw);
progress_log = gtk_text_view_new ();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment