IconView: always raise Click event when clicked.
[GB.GUI.BASE] * BUG: IconView: Always raise Click event when clicked and not only when selection changes. See Gambas Bug #1358
This commit is contained in:
parent
db363c53fa
commit
1979d2f142
1 changed files with 2 additions and 2 deletions
|
@ -1103,9 +1103,9 @@ Public Sub ScrollArea_MouseUp()
|
|||
If $iCurrent >= 0 Then
|
||||
If $iCurrent = $iCurrentBefore Then
|
||||
'$aItems[$iCurrent].Rename
|
||||
Else
|
||||
RaiseEvent(EVENT_CLICK, $iCurrent)
|
||||
Endif
|
||||
' Click is always raised, Select may not
|
||||
RaiseEvent(EVENT_CLICK, $iCurrent)
|
||||
Endif
|
||||
|
||||
Endif
|
||||
|
|
Loading…
Reference in a new issue