From 692e28b0dae336888ad856fc0d0ff71b0294ace7 Mon Sep 17 00:00:00 2001 From: Fellippe Heitor Date: Sun, 7 Mar 2021 11:39:05 -0300 Subject: [PATCH] Indicates (options->display) that window pos isn't stored (lnx). --- source/ide/ide_methods.bas | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/source/ide/ide_methods.bas b/source/ide/ide_methods.bas index 5b2c1637c..fb1c6aba6 100644 --- a/source/ide/ide_methods.bas +++ b/source/ide/ide_methods.bas @@ -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