How can i delete black distanse from the screen

Looks resolution and scale problem.

  • display/window/size/viewport_width and display/window/size/viewport_height decide the size of the center part.
  • display/window/stretch/mode and display/window/stretch/aspect decide how to transform the center part.

In your case:

  • If you want to make it fill the screen:
    • set display/window/stretch/aspect to expand or ignore
  • If you want to make it expand to max area:
    • set display/window/stretch/aspect to keep
  • If you want to scale the view:
    • set display/window/stretch/mode to viewport
  • Also you can try to compose those options and choose best one.
1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.