Changed: Do not show spinning cursor for image downloads

--HG--
branch : develop
This commit is contained in:
Nimetu 2019-04-30 22:52:38 +03:00
parent 5369373591
commit 2e84381bfa

View file

@ -2519,9 +2519,10 @@ namespace NLGUI
bool CGroupHTML::isBrowsing() bool CGroupHTML::isBrowsing()
{ {
// do not show spinning cursor for image downloads (!Curls.empty())
return _BrowseNextTime || _PostNextTime || _RenderNextTime || return _BrowseNextTime || _PostNextTime || _RenderNextTime ||
_Browsing || _WaitingForStylesheet || _Browsing || _WaitingForStylesheet ||
_CurlWWW || !Curls.empty(); _CurlWWW;
} }
// *************************************************************************** // ***************************************************************************