Ttanasart-pt / Pixel-Composer

Node base VFX editor for pixel art.
MIT License
681 stars 30 forks source link

[Bug] (1.0.9) - Setting Solid Node Dimension to (1, 1) Doesn't Update Node Dimensions #22

Closed Synthoid closed 1 year ago

Synthoid commented 1 year ago

Attempting to set a Solid node's dimensions to (1, 1) will not update the output resolution of the node. Adjusting one value to 1 seems to work fine, but setting the second value to 1 will preserve the previous output resolution. Adjusting from (1, 1) to any higher value works as expected. For example:

Initial Resolution New Resolution Output Resolution Status
(2, 2) (2, 1) (2, 1)
(2, 2) (1, 2) (1, 2)
(1, 2) (1, 1) (1, 2)
(1, 1) (2, 1) (2, 1)

image

Ttanasart-pt commented 1 year ago

That's... interesting. I'll look into it.

Synthoid commented 1 year ago

Nice, seems like the 1.1.0 release fixed this issue!

image