mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
make Dbg variant's icons upside down
The write-red-on-it thing doesn't work for the notify.png file used in notifications (I think because I can't find a color Android doesn't strip out.) So use a rotation transform instead. Users will never see this anyway.
This commit is contained in:
parent
4f30a5be71
commit
449860a880
1 changed files with 4 additions and 1 deletions
|
@ -7,7 +7,10 @@ $(DEST_PATH)/%.java : $(SRC_PATH)/%.java
|
|||
< $< > $@
|
||||
|
||||
$(DEST_PATH)/icon48x48.png : $(SRC_PATH)/icon48x48.png
|
||||
convert $< -fill red -gravity Center -annotate +0+5 ' Dbg ' $@
|
||||
convert $< -rotate 180 -gravity Center $@
|
||||
|
||||
$(DEST_PATH)/notify.png : $(SRC_PATH)/notify.png
|
||||
convert $< -rotate 180 -gravity Center $@
|
||||
|
||||
$(DEST_PATH)/%.png : $(SRC_PATH)/%.png
|
||||
@cp $< $@
|
||||
|
|
Loading…
Reference in a new issue