From: Wladimir J. van der Laan Date: Fri, 5 Aug 2011 18:25:45 +0000 (+0200) Subject: improve sync spinner X-Git-Tag: v0.4.0-unstable~226^2~57^2~62 X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=d4e3cb4c03d81d02a348e72ec0f95b8233d80bfd;p=novacoin.git improve sync spinner --- diff --git a/scripts/img/reload.xcf b/scripts/img/reload.xcf index c3ce165..dc8be62 100644 Binary files a/scripts/img/reload.xcf and b/scripts/img/reload.xcf differ diff --git a/scripts/img/reload_scaled.png b/scripts/img/reload_scaled.png deleted file mode 100644 index 9a45b1b..0000000 Binary files a/scripts/img/reload_scaled.png and /dev/null differ diff --git a/scripts/make_spinner.py b/scripts/make_spinner.py index c1f94c1..1d4ee02 100755 --- a/scripts/make_spinner.py +++ b/scripts/make_spinner.py @@ -15,6 +15,7 @@ NUMFRAMES=35 FRAMERATE=10.0 CONVERT='convert' CLOCKWISE=True +DSIZE=(16,16) im_src = Image.open(SRC) @@ -30,6 +31,7 @@ for frame in xrange(NUMFRAMES): if CLOCKWISE: rotation = -rotation im_new = im_src.rotate(rotation, Image.BICUBIC) + im_new.thumbnail(DSIZE, Image.ANTIALIAS) outfile = frame_to_filename(frame) im_new.save(outfile, 'png') frame_files.append(outfile) diff --git a/src/qt/res/movies/update_spinner.mng b/src/qt/res/movies/update_spinner.mng index 99b1b14..7df3baa 100644 Binary files a/src/qt/res/movies/update_spinner.mng and b/src/qt/res/movies/update_spinner.mng differ