diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-12 16:53:14 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-12 16:53:14 +0000 |
commit | 94dc7a135519b1c89c5e01a1a869115624893169 (patch) | |
tree | 39fa6e37fd0bad89fe321fd45aa7706b06370e2e /perl-install/standalone/harddrake2 | |
parent | 05c89023e84ffc627fdfbaa3400528f9759df361 (diff) | |
download | drakx-94dc7a135519b1c89c5e01a1a869115624893169.tar drakx-94dc7a135519b1c89c5e01a1a869115624893169.tar.gz drakx-94dc7a135519b1c89c5e01a1a869115624893169.tar.bz2 drakx-94dc7a135519b1c89c5e01a1a869115624893169.tar.xz drakx-94dc7a135519b1c89c5e01a1a869115624893169.zip |
fix first message display
Diffstat (limited to 'perl-install/standalone/harddrake2')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 6 |
1 files changed, 5 insertions, 1 deletions
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(); |