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

Commit 8cd4aa9

Browse files
committed
[[ Bug 20074 ]] Prevent removal of P from default handler name
1 parent 5680dc9 commit 8cd4aa9

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

Toolset/palettes/script editor/behaviors/revsehandlerlistbehavior.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ command update
189189

190190
local tIsPrivate
191191
put false into tIsPrivate
192-
if char 1 of tParseHandler is "P" then
192+
if tHandlerExists and char 1 of tParseHandler is "P" then
193193
put true into tIsPrivate
194194
delete char 1 of tParseHandler
195195
end if

notes/bugfix-20074.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Prevent removal of initial P from default handler name

0 commit comments

Comments
 (0)