In the interest of better optimising my game I was reading this article which says
Also, to avoid adjacent image's colors "bleeding" or "fringing" across to other frames, Construct leaves a 1 pixel space between all frames on a spritesheet. This means it won't be able to fit four 128x128 images in a single 256x256 spritesheet, so try to ensure Sprite images are just below a power-of-two size. The optimal size is two pixels less than a power-of-two size, e.g. 30x30, 126x126 or 254x254. (Note however that Tiled Background objects do work best at exactly a power-of-two size.)
Now I seem to have somehow missed this memo and have been creating all my pixel art as power of 2 sizes, everything from my resolution to my grid is set up around this. It's a pixel art game, so it probably isn't the end of the world if it's not optimised the best way possible, but am I understanding this correctly, that for instance my 32x32 character will essentially take up double the space on a spritesheet than if it was 30x30? It just seems a bit unintuitive. That's on me for not reading the docs though.
How are others handling this for art assets? Is it much of an issue, or should I just continue as I have? Bearing in mind the game is fairly animation heavy. If I use the auto crop tools each animation frame is cropped to a different size anyway, so maybe I don't need to worry so much and just let construct do it's own thing?