diff options
-rw-r--r-- | NEWS | 2 | ||||
-rwxr-xr-x | control-center | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ - fix gtk+ warnings about deprecated style property - fix the "Display Logs" option doing nothing (mga#19147) +- re-enable startup animation + (it was disabled since switching from gtk+2 to gtk+3) Version 13.7 - 28 May 2016, RĂ©mi Verschelde diff --git a/control-center b/control-center index af8bcdbf..e4ffccbc 100755 --- a/control-center +++ b/control-center @@ -1257,8 +1257,8 @@ sub run_tool { $run_counter_add = -5; undef $wait_darea->{size}; undef $wait_darea->{first_expose}; + $wait_darea->{size} = $wait_darea->get_allocation; $timeout = Glib::Timeout->add(35, sub { - $wait_darea->{size} ||= $wait_darea->get_allocation; my $w = $wait_darea; $w->queue_draw_area($w->{pix_yy}, $w->{pix_xx}, $w->{pix_width}, $w->{pix_height}); 1; |