Hi all, IconView has a bug. This is an oversight, and verify which mouse
button has been pressed to initiate a selection. Code in the line 815:

If $iMode = Select.Multiple And Mouse.Left Then

Well, now the question. Why are we using control Separator, instead of using
a class that use Draw.Style.Separator? I improvised a little class called
"RealSeparator". Perhaps you could replace the old.

Inherits UserControl
Export
Private dwgSep As DrawingArea

Public Const _Similar As String = "Separator"

Public Sub _new()

  dwgSep = New DrawingArea(Me) As "dwgSep"

End

Public Sub dwgSep_Draw()

  Draw.Begin(dwgSep)
  Draw.Style.Separator(0, 0, dwgSep.ClientW, dwgSep.ClientH, (dwgSep.ClientH
> dwgSep.ClientW))
  Draw.End()

End

Regards,

-- 
Federico Leite
##############################################
Areida Developer
------------------------------------------------------------------------------
WhatsUp Gold - Download Free Network Management Software
The most intuitive, comprehensive, and cost-effective network 
management toolset available today.  Delivers lowest initial 
acquisition cost and overall TCO of any competing solution.
http://p.sf.net/sfu/whatsupgold-sd
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to