From 94dc7a135519b1c89c5e01a1a869115624893169 Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Wed, 12 Mar 2003 16:53:14 +0000 Subject: fix first message display --- perl-install/standalone/harddrake2 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index d94fbdf3f..cb9a48e41 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -176,7 +176,7 @@ $w->{window}->add(gtkpack_(0, Gtk2::VBox->new(0, 0), } }) ), - ( 'resize1' => 0, shrink1 => 1, resize2 => 0, shrink2 => 0) + ( 'resize1' => 0, shrink1 => 1, resize2 => 0, shrink2 => 1) ), 0, $statusbar = Gtk2::Statusbar->new, if_($::isEmbedded, 0, gtkpack(create_hbox(), @@ -313,6 +313,10 @@ $textcolumn->set_min_width(350); #$textcolumn->set_minmax_width(400); $textcolumn->set_sizing('GTK_TREE_VIEW_COLUMN_AUTOSIZE');#GROW_ONLY #$tree->columns_autosize(); +my $path = Gtk2::TreePath->new_first; +$path->down unless $::isEmbedded; +$tree->get_selection->select_path($path); +$path->free; $w->{rwindow}->show_all; undef $wait; gtkset_mousecursor_normal(); -- cgit v1.2.1