diff options
-rw-r--r-- | perl-install/install/NEWS | 3 | ||||
-rwxr-xr-x | perl-install/standalone/display_installer_help | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 56018e27a..e4db0aef9 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,6 @@ +- help dialogs: + o make screenshots work (mga#11176) + Version 16.23 - 16 January 2014 - partitioning: diff --git a/perl-install/standalone/display_installer_help b/perl-install/standalone/display_installer_help index 09c6bae31..165ae6729 100755 --- a/perl-install/standalone/display_installer_help +++ b/perl-install/standalone/display_installer_help @@ -21,10 +21,15 @@ use lib qw(/usr/lib/libDrakX); use interactive; use any; +# so that screenshots works: +use install::any; +$::isInstall = 1; + my $in = 'interactive'->vnew('su'); # so that we popup above drakx: any::set_wm_hints_if_needed($in); # Fake enough $o for retrieving the proper translation: -$o->{locale}{lang} = $ARGV[1]; +$::o = $in; +$::o->{locale}{lang} = $ARGV[1]; $in->display_help_window({ interactive_help_id => $ARGV[0] }); |