Modify ↓
Opened on Jun 8, 2024 at 6:31:33 PM
Closed on Jun 9, 2024 at 6:43:40 AM
#4019 closed Bug (Works For Me)
Little bug in ArrayDisplayInternals
| Reported by: | pixelsearch | Owned by: | |
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.16.1 | Severity: | None |
| Keywords: | Cc: |
Description
Hello jpm
I think there's something missing in ArrayDisplayInternals.au3 (version 3.3.16.1)
Switch VarGetType($sTemp) Case "Array" Local $sSubscript = "" For $i = 1 To UBound($sTemp, 0) $sSubscript = "[" & UBound($sTemp, $i) & "]" Next
It should be :
$sSubscript &= "[" & UBound($sTemp, $i) & "]"
Without &= then a 2D array will always be displayed as a 1D array, with only 1 pair of brackets containing... the number of columns.
Attachments (0)
Change History (2)
comment:2 by , on Jun 9, 2024 at 6:43:40 AM
| Resolution: | → Works For Me |
|---|---|
| Status: | new → closed |
Note:
See TracTickets
for help on using tickets.

Thanks
Already fix for the next beta