We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8dc702 commit b5b23a2Copy full SHA for b5b23a2
1 file changed
docs/components_movies_MovieDetails.bs.html
@@ -93,8 +93,11 @@
93
if m.isFirstRun
94
m.isFirstRun = false
95
else
96
- ' Trigger data refresh when returning to screen
97
- m.top.refreshMovieDetailsData = not m.top.refreshMovieDetailsData
+ ' don't refresh when closing OverviewDialog
+ if not isValid(m.top.lastFocus) or m.top.lastFocus.id <> "itemDescription"
98
+ ' refresh screen when returning to it
99
+ m.top.refreshMovieDetailsData = not m.top.refreshMovieDetailsData
100
+ end if
101
end if
102
end sub
103
0 commit comments