svn path=/trunk/msdn-browse/; revision=48518
This commit is contained in:
Ben Maurer 2005-08-18 19:22:49 +00:00
Родитель 459b6dbaa3
Коммит f9bce8eccf
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -14,7 +14,7 @@ class MsdnView : Window {
public MsdnView () : base ("Msdn View") public MsdnView () : base ("Msdn View")
{ {
DefaultSize = new Gdk.Size (640,480); DefaultSize = new Gdk.Size (1024,1024);
HPaned hb = new HPaned (); HPaned hb = new HPaned ();
@ -24,6 +24,7 @@ class MsdnView : Window {
NodeView view = new NodeView (Store); NodeView view = new NodeView (Store);
view.HeadersVisible = false; view.HeadersVisible = false;
view.AppendColumn ("Name", new CellRendererText (), "text", 0); view.AppendColumn ("Name", new CellRendererText (), "text", 0);
sw.WidthRequest = 300;
InitTree (); InitTree ();
Add (hb); Add (hb);
hb.Add (sw); hb.Add (sw);