Missing container add for textbrowser

Needed to add gtk_container_add to add the text_view to the scroll
window.
This commit is contained in:
Robert Fewell 2018-03-31 17:11:15 +01:00
parent 3f7d70ace3
commit 9b120f95a9

View File

@ -203,6 +203,7 @@ static int Gtk3Gui_WTextBrowser_Setup(GWEN_WIDGET *w) {
/* create widget */
gs=gtk_scrolled_window_new(NULL, NULL);
g=gtk_text_view_new();
gtk_container_add(GTK_CONTAINER(gs), GTK_WIDGET(g));
if (s && *s) {
GWEN_BUFFER *tbuf;