This repository was archived by the owner on Aug 31, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed
palettes/inspector/editors
resources/supporting_files/property_definitions Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,16 @@ on editorInitialize
66
77 set the itemdelimiter to "."
88 put item - 1 of the editorProperty["editor" ] of me into sTextType
9+
10+ local tText , tOptions
11+ put the editorOptions of me into tOptions
12+ set the itemdelimiter to "|"
13+ repeat for each line tLine in tOptions
14+ local tProperty ,tValue
15+ put item 1 of tLine into tProperty
16+ put item 2 of tLine into tValue
17+ set the tProperty of field 1 of me to tValue
18+ end repeat
919end editorInitialize
1020
1121on editorUpdate
Original file line number Diff line number Diff line change @@ -177,7 +177,7 @@ styledText Contents Contents com.livecode.pi.styledText true false no_default
177177systemWindow Float above everything Basic com.livecode.pi.boolean true false false
178178tabGroupBehavior Contents focus with keyboard Basic com.livecode.pi.boolean true false false
179179tabStops Tab stops Table com.livecode.pi.string true false
180- text Text Basic com.livecode.pi.text false false
180+ text Text Basic com.livecode.pi.text false false tabStops|15
181181textAlign Text align Text com.livecode.pi.textalign true false
182182textFont Font Text com.livecode.pi.font true false
183183textHeight Text height Text com.livecode.pi.integer true false 4 1
Original file line number Diff line number Diff line change 1+ # Allow entry of tabs into the text property field of the property inspector
You can’t perform that action at this time.
0 commit comments