etherlab/images/genicons.sh
author Edouard Tisserant <edouard.tisserant@gmail.com>
Mon, 04 Jul 2022 09:30:20 +0200
branchwxPython4
changeset 3529 b9737bb5f92a
parent 2043 27d4cb689a79
permissions -rw-r--r--
test: Fix context menu problems in debug view. This should fix debug_test as well.

- exception on right click on a wire
- tooltip hiding context menu in some case
#!/bin/bash

INKSCAPE=inkscape

for i in `cat icons.svg |grep -o -e '%%[^%]*%%'|sed 's/%//g'` 
do
 if [ $i.png -nt icons.svg ]; then
 	echo "Skip $i"
 else
	rm  -f $i.png
	echo "$INKSCAPE" icons.svg -z -e $i.png -i $i
	"$INKSCAPE" icons.svg -z -e $i.png -i $i
 fi
done