Modify ↓
Opened 6 weeks ago
Closed 5 weeks ago
#4031 closed Bug (Fixed)
Calling _DebugArrayDisplay after calling _ArrayDisplay will disable the buttons of _DebugArrayDisplay
Reported by: | anonymous | Owned by: | Jpm |
---|---|---|---|
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:1 Changed 5 weeks ago by Jpm
comment:2 Changed 5 weeks ago by Jpm
- Milestone set to 3.3.17.0
- Owner set to Jpm
- Resolution set to Fixed
- Status changed from new to closed
Fixed by revision [13078] in version: 3.3.17.0
Guidelines for posting comments:
- You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
- In-depth discussions should take place on the forum.
For more information see the full version of the ticket guidelines here.
Note: See
TracTickets for help on using
tickets.
Thanks, it is also true after using Userfunc