Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f5950ed

Browse files
Merge pull request #1937 from livecode/bugfix-21065
[[ Bug 21065 ]] Don't try to set loc of stack to empty
2 parents 3fde453 + 54ae552 commit f5950ed

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Toolset/libraries/revidedeveloperextensionlibrary.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ on __revIDEDeveloperExtensionDoCreateTestStack pPath, tRectsA, pDetailsA
383383
create stack "LiveCode Extension Test Window"
384384
if tRectsA["rect"] is not empty then
385385
set the rect of stack "LiveCode Extension Test Window" to tRectsA["rect"]
386-
else
386+
else if tRectsA["loc"] is not empty then
387387
set the loc of stack "LiveCode Extension Test Window" to tRectsA["loc"]
388388
end if
389389
set the destroyStack of stack "LiveCode Extension Test Window" to true

notes/bugfix-21065.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Set loc of extension builder generated test stack correctly on first test

0 commit comments

Comments
 (0)