IconView.class: do not return before drawing background picture if no items are added.
[GB.GUI.BASE] * BUG: IconView background image is now drawn if no icons are added.
This commit is contained in:
parent
ab885aabd4
commit
5187e4fcea
1 changed files with 7 additions and 6 deletions
|
@ -429,19 +429,20 @@ Public Sub ScrollArea_Draw()
|
|||
Dim bRaiseDraw As Boolean
|
||||
Dim bFocus As Boolean
|
||||
|
||||
If $aItems.Count = 0 Then Return
|
||||
If $iLock Then Return
|
||||
|
||||
bFocus = $hView.HasFocus
|
||||
|
||||
hSaveClip = Paint.ClipRect
|
||||
|
||||
|
||||
If $hPicture Then
|
||||
Draw.FillX = -$hView.ScrollX
|
||||
Draw.FillY = -$hView.ScrollY
|
||||
Draw.Tile($hPicture, 0, 0, Draw.Width, Draw.Height)
|
||||
Endif
|
||||
|
||||
If $aItems.Count = 0 Then Return
|
||||
|
||||
bFocus = $hView.HasFocus
|
||||
|
||||
hSaveClip = Paint.ClipRect
|
||||
|
||||
bRaiseDraw = Object.CanRaise(Me, "Draw")
|
||||
|
||||
X = hSaveClip.X + $hView.ScrollX
|
||||
|
|
Loading…
Reference in a new issue