From f88799c77ef037c2c61c83db6e61ae2a0b0d6221 Mon Sep 17 00:00:00 2001 From: Miguel de Icaza Date: Tue, 26 Apr 2005 17:10:10 +0000 Subject: [PATCH] Remove unnecessary config file svn path=/trunk/gtk-sharp/; revision=43602 --- sample/gtk-html-sample.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sample/gtk-html-sample.cs b/sample/gtk-html-sample.cs index b594503c7..464ecfc9f 100644 --- a/sample/gtk-html-sample.cs +++ b/sample/gtk-html-sample.cs @@ -11,7 +11,9 @@ class HTMLSample { Application.Init (); html = new HTML (); win = new Window ("Test"); - win.Add (html); + ScrolledWindow sw = new ScrolledWindow (); + win.Add (sw); + sw.Add (html); HTMLStream s = html.Begin ("text/html"); if (args.Length > 0) {