--- anaconda-7.3/iw/installpath_gui.py Mon Mar 11 13:32:05 2002 +++ anaconda-7.3-f1/iw/installpath_gui.py Fri Jul 12 17:08:39 2002 @@ -169,8 +169,20 @@ self.toggled(button) + # CJS Added for scrolling + scrolledwin = GtkScrolledWindow() + scrolledwin.set_border_width(5) + scrolledwin.set_usize(-1,475) + scrolledwin.set_policy(POLICY_AUTOMATIC,POLICY_AUTOMATIC) + scrolledwin.add_with_viewport(table) + scrolledwin.show() + # CJS added end + box = GtkVBox (FALSE, 5) - box.pack_start(table, FALSE) + box.pack_start(scrolledwin, FALSE) +#CJS changed to above +# box.pack_start(table, FALSE) box.set_border_width (5) + return box