diff options
author | Michael <betheg@bitcloner.org> | 2014-09-20 15:49:25 +0200 |
---|---|---|
committer | Michael <betheg@bitcloner.org> | 2014-09-20 15:49:25 +0200 |
commit | a86a09ab5b81f39c4d56c37af65e630539e85ffe (patch) | |
tree | 621ce6fcb0086b967d5aa8ecf3de27bacb3dc967 /art/render.rb | |
parent | 295bfb7f1de98649d8a7dd5f77745e50bfc25f56 (diff) |
indicates received messages with a tick.
Diffstat (limited to '')
-rwxr-xr-x | art/render.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/art/render.rb b/art/render.rb index ed306072..5464b9f5 100755 --- a/art/render.rb +++ b/art/render.rb @@ -1,6 +1,6 @@ #!/bin/env ruby resolutions={'mdpi'=> 1, 'hdpi' => 1.5, 'xhdpi' => 2, 'xxhdpi' => 3} -images = { 'conversations.svg' => ['ic_launcher',48], 'conversations_baloon.svg' => ['ic_activity', 32], 'conversations_mono.svg' => ['ic_notification',24] } +images = { 'conversations.svg' => ['ic_launcher',48], 'conversations_baloon.svg' => ['ic_activity', 32], 'conversations_mono.svg' => ['ic_notification',24], 'ic_received_indicator.svg' => ['ic_received_indicator',12] } images.each do |source, result| resolutions.each do |name, factor| size = factor * result[1] |