diff options
-rw-r--r-- | perl-install/install/NEWS | 2 | ||||
-rw-r--r-- | perl-install/install/steps_gtk.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/perl-install/install/NEWS b/perl-install/install/NEWS index b9efd293a..44415884a 100644 --- a/perl-install/install/NEWS +++ b/perl-install/install/NEWS @@ -1,3 +1,5 @@ +- fix hidden cursor (mga#17470) + Version 17.16 - 21 January 2016 - Add ARM support in perl-install diff --git a/perl-install/install/steps_gtk.pm b/perl-install/install/steps_gtk.pm index 0bd2352e8..02d0038a5 100644 --- a/perl-install/install/steps_gtk.pm +++ b/perl-install/install/steps_gtk.pm @@ -57,6 +57,7 @@ sub new($$) { $o = (bless {}, ref($type) || $type)->SUPER::new($o); $o->interactive::gtk::new; + gtkset_mousecursor_normal(); $o; } |