diff options
Diffstat (limited to 'perl-install/standalone')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index d257f33d8..f9c1dc22f 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -112,8 +112,13 @@ my @menu_items = ); my ($sig_id, $wait); $in = 'interactive'->vnew('su', 'default'); -$wait = $in->wait_message(N("Please wait"), N("Detection in progress")); -gtkflush(); + +{ + local $::isEmbedded = 0; # to prevent sub window embedding + $wait = $in->wait_message(N("Please wait"), N("Detection in progress")); + gtkflush(); +} + %options = getVarsFromSh($conffile); # Build the gui |