diff options
| author | Wladimir J. van der Laan <[email protected]> | 2011-08-05 20:25:45 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2011-08-05 20:32:26 +0200 |
| commit | d4e3cb4c03d81d02a348e72ec0f95b8233d80bfd (patch) | |
| tree | fe10c6c3239541c3396c5013c36e7afdfa1de2ea | |
| parent | speling fix (diff) | |
| download | discoin-d4e3cb4c03d81d02a348e72ec0f95b8233d80bfd.tar.xz discoin-d4e3cb4c03d81d02a348e72ec0f95b8233d80bfd.zip | |
improve sync spinner
| -rw-r--r-- | scripts/img/reload.xcf | bin | 28597 -> 25292 bytes | |||
| -rw-r--r-- | scripts/img/reload_scaled.png | bin | 905 -> 0 bytes | |||
| -rwxr-xr-x | scripts/make_spinner.py | 2 | ||||
| -rw-r--r-- | src/qt/res/movies/update_spinner.mng | bin | 27707 -> 27817 bytes |
4 files changed, 2 insertions, 0 deletions
diff --git a/scripts/img/reload.xcf b/scripts/img/reload.xcf Binary files differindex c3ce165ad..dc8be6283 100644 --- a/scripts/img/reload.xcf +++ b/scripts/img/reload.xcf diff --git a/scripts/img/reload_scaled.png b/scripts/img/reload_scaled.png Binary files differdeleted file mode 100644 index 9a45b1bd1..000000000 --- a/scripts/img/reload_scaled.png +++ /dev/null diff --git a/scripts/make_spinner.py b/scripts/make_spinner.py index c1f94c12c..1d4ee0202 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 Binary files differindex 99b1b1413..7df3baac6 100644 --- a/src/qt/res/movies/update_spinner.mng +++ b/src/qt/res/movies/update_spinner.mng |