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:1 by J-Paul Mesnage, 17 months ago

Thanks, it is also true after using Userfunc

comment:2 by J-Paul Mesnage, 17 months ago

Milestone: 3.3.17.0
Owner: set to J-Paul Mesnage
Resolution: Fixed
Status: newclosed

Fixed by revision [13078] in version: 3.3.17.0

Modify Ticket

Action
as closed The owner will remain J-Paul Mesnage.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.