I want ot submit a patch.
To get rid of annoying window, appearing each time you change some settings, or saving file,
change lines 92—95 of OptiPngFileType.cs
from
StartInfo = {
Arguments = "\"" + tempFile + "\"" + " -o" + token.Compression + " -i" + (token.Interlace ? "1" : "0"),
WindowStyle = ProcessWindowStyle.Minimized
}
to
StartInfo = {
UseShellExecute = false,
CreateNoWindow = true,
Argumen