Project Settings, Display Properties not changing

Created a project under 1.3.0 for a ESP32-S3 SC01 Plus 320x480 correctly, i.e. Screen1 320x480 (WxH). Everything good until I saw in Project Settings-Display Properties the screen was set at 480x480 although visually correct. I tried changing Display Properties to 320x480 but editing Width always snaps back to 480 and now my Screen1 is 480x480 and I am unable to change it back.

What have you tried so far?

Everything short of pulling my hair out.

Screenshot or video

Others

  • SquareLine Studio version: 1.3.0
  • Operating system: Windows 11
  • Target hardware: WT32-SC01 PLUS

Hi,

You can find the parameters of the pre-created boards in the boardname.slb file.
On Windows, the path to this board is here: C:\Users\USERNAME\Documents\SquareLine\boards\Espressif\esp32_s3_lcd_ev_board_v1_0_1

Here you can see that the minimum resolution is set to 480 px:

"version": "1.0.1",
"group": "Espressif",
"title": "ESP32-S3-LCD-EV-BOARD",
"width": 800,
"height": 480,
"width_min": 480,
"height_min": 480,
"width_max": 800,
"height_max": 480,

Change the minimum resolution to a lower one and it will work.

1 Like