Modify ↓
#4031 closed Bug (Fixed)
Calling _DebugArrayDisplay after calling _ArrayDisplay will disable the buttons of _DebugArrayDisplay
| Reported by: | anonymous | Owned by: | J-Paul Mesnage |
|---|---|---|---|
| Milestone: | 3.3.17.0 | Component: | AutoIt |
| Version: | 3.3.16.1 | Severity: | None |
| Keywords: | _DebugArrayDisplay _ArrayDisplay | Cc: |
Description
#include <Array.au3> #include <Debug.au3> Local $array = [1, 2, 3] _DebugArrayDisplay($array) ; With buttons _ArrayDisplay($array) ; Without buttons _DebugArrayDisplay($array) ; Without buttons
I think the reason is the _ArrayDisplay passes a "0" as the $hUser_Function parameter to _ArrayDisplay_Share, which causes $_g_ArrayDisplay_bUserFunc to True, then it causes the $bDebug to be False at the later call to _DebugArrayDisplay...
It must be that, unless it is not that 😆
Attachments (0)
Change History (2)
comment:2 by , on Oct 15, 2024 at 10:37:20 AM
| Milestone: | → 3.3.17.0 |
|---|---|
| Owner: | set to |
| Resolution: | → Fixed |
| Status: | new → closed |
Fixed by revision [13078] in version: 3.3.17.0
Note:
See TracTickets
for help on using tickets.

Thanks, it is also true after using Userfunc