1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-26 17:10:38 +00:00

Indicates (options->display) that window pos isn't stored (lnx).

This commit is contained in:
Fellippe Heitor 2021-03-07 11:39:05 -03:00
parent ece89712f3
commit 692e28b0da

View file

@ -11027,7 +11027,11 @@ FUNCTION idedisplaybox
i = i + 1
o(i).typ = 4 'check box
o(i).y = 8
o(i).nam = idenewtxt("Restore window #position at startup")
IF INSTR(_OS$, "WIN") > 0 OR INSTR(_OS$, "MAC") > 0 THEN
o(i).nam = idenewtxt("Restore window #position and size at startup")
ELSE
o(i).nam = idenewtxt("Restore window size at startu#p")
END IF
IF IDE_AutoPosition THEN o(i).sel = 1
i = i + 1