Tue, 28 Jun 2022 14:53:22 +0300
Work around a Qt bug involving the rendering behavior of the first created sub window
6 | 1 | #!/bin/bash |
2 | for flag in *.svg | |
3 | do | |
4 | flag_png="${flag%.svg}.png" | |
5 | echo "$flag => $flag_png" | |
6 | inkscape -z -e ${flag_png} -w 64 $flag | |
7 | done |