diff options
-rw-r--r-- | src/ui/documentwidget.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/documentwidget.c b/src/ui/documentwidget.c index 58e6a11e..21ea5aba 100644 --- a/src/ui/documentwidget.c +++ b/src/ui/documentwidget.c | |||
@@ -392,7 +392,8 @@ static iBool isHoverAllowed_DocumentWidget_(const iDocumentWidget *d) { | |||
392 | if (!(d->state == ready_RequestState || d->state == receivedPartialResponse_RequestState)) { | 392 | if (!(d->state == ready_RequestState || d->state == receivedPartialResponse_RequestState)) { |
393 | return iFalse; | 393 | return iFalse; |
394 | } | 394 | } |
395 | if (d->flags & noHoverWhileScrolling_DocumentWidgetFlag) { | 395 | if (d->flags & (noHoverWhileScrolling_DocumentWidgetFlag | |
396 | drawDownloadCounter_DocumentWidgetFlag)) { | ||
396 | return iFalse; | 397 | return iFalse; |
397 | } | 398 | } |
398 | if (d->flags & pinchZoom_DocumentWidgetFlag) { | 399 | if (d->flags & pinchZoom_DocumentWidgetFlag) { |