FileView: Prevent a possible infinite refresh and preview recursion when some properties are read during the 'Refresh' event.
[GB.FORM] * BUG: FileView: Prevent a possible infinite refresh and preview recursion when some properties are read during the 'Refresh' event.
This commit is contained in:
parent
53fd551ba0
commit
8fb2189446
2 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
|||
# Gambas Project File 3.0
|
||||
Title=More controls for graphical components
|
||||
Startup=FTestColorChooser
|
||||
Startup=FTestFileChooser
|
||||
Icon=.hidden/icon.png
|
||||
Version=3.18.90
|
||||
VersionFile=1
|
||||
|
|
|
@ -747,7 +747,7 @@ End
|
|||
|
||||
Public Sub Refresh_Timer()
|
||||
|
||||
If Not $bRefreshTriggered And Not $hRefresh.Enabled Then Return
|
||||
If Not $bRefreshTriggered And If Not $hRefresh.Enabled Then Return
|
||||
RefreshView
|
||||
$hRefresh.Stop
|
||||
|
||||
|
@ -829,7 +829,7 @@ End
|
|||
Private Sub EnsureRefresh()
|
||||
|
||||
Try $hRefresh.Stop
|
||||
RefreshView
|
||||
If $bRefreshTriggered Then RefreshView
|
||||
|
||||
End
|
||||
|
||||
|
|
Loading…
Reference in a new issue