Actions
Bug #278
closedMaking a display over 720 heigh doesnt render
Start date:
02/29/2020
Due date:
% Done:
0%
Estimated time:
Affected version:
Description
When making a disply over 720 it will not render anything below 720.
`
#manifest: "pc"
#displayWidth:1024
#displayHeight:900
#fullScreen:true
#googleFont:"smokum"
#fps:false
#splashScreen:false
#noWarning:"variable_not_declared"
// This will render:
plot 150,700,1
/This will not:
plot 150,750,1`
Updated by Truls Osmundsen over 4 years ago
When using a screen open-command of the same size as the display this error goes away.
In pc-mode, the screen 0 should be the same size as the display though :)
Updated by Brian Flanagan about 4 years ago
- Status changed from New to Rejected
This is normal.
The reason your plotted point is not appearing, is that the default screen size ( Screen Width and Screen Height ) for PC mode (now AOZ mode) is 1280 x 720. The point at 150,750 is off the screen (>719).
Actions