Modify

Opened 3 hours ago

#4031 new Bug

Calling _DebugArrayDisplay after calling _ArrayDisplay will disable the buttons of _DebugArrayDisplay

Reported by: anonymous Owned by:
Milestone: 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 (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.

Add Comment

Modify Ticket

Action
as new The ticket will remain with no owner.
Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.