diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-21 23:41:26 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2014-01-21 23:52:20 +0100 |
commit | 0eb005c4912494eda1fd348bce8fd78800373349 (patch) | |
tree | 3de65bd9e844d4a3895018c90cf4c6a3768023dd /perl-install/install | |
parent | 42ef40038729b606c0f94d2e044920baff51a37f (diff) | |
download | drakx-0eb005c4912494eda1fd348bce8fd78800373349.tar drakx-0eb005c4912494eda1fd348bce8fd78800373349.tar.gz drakx-0eb005c4912494eda1fd348bce8fd78800373349.tar.bz2 drakx-0eb005c4912494eda1fd348bce8fd78800373349.tar.xz drakx-0eb005c4912494eda1fd348bce8fd78800373349.zip |
do warn on first screenshot (mga#11176)
first screenshot already exists by this time...
Diffstat (limited to 'perl-install/install')
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/any.pm | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index 293cff024..1db139ec7 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,5 +1,7 @@ - debug image: o add a warning about QWERTY keyboard +- help dialogs: + o do warn on first screenshot (mga#11176) Version 16.26.3 - 21 January 2014 diff --git a/perl-install/install/any.pm b/perl-install/install/any.pm index 4ea10da58..63cefc848 100644 --- a/perl-install/install/any.pm +++ b/perl-install/install/any.pm @@ -1393,7 +1393,7 @@ sub take_screenshot { run_program::run('fb2png', '/dev/fb0', "$dir/$nb.png", '0'); # help doesn't remember warning has been shown (one shot processes): - $warned ||= -e "$dir/1.png"; + $warned ||= -e "$dir/2.png"; if (!$warned && !$nowarn) { $warned = 1; |