Sun, 09 Apr 2023 16:23:05 +0300
Add undo, redo, cut, copy and paste actions to MainWindow which pass onto the editor widget
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 |