Skip to content

Commit

Permalink
Always show ProgressBarWidget if page is loading and it is enabled, f…
Browse files Browse the repository at this point in the history
…ixes #949
  • Loading branch information
Emdek committed Oct 18, 2015
1 parent 9422a9c commit 9616d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/windows/web/ProgressBarWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void ProgressBarWidget::timerEvent(QTimerEvent *event)

QRect geometry = m_webWidget->getProgressBarGeometry();

if (m_webWidget->isLoading() && geometry.width() > (width() / 2))
if (m_webWidget->isLoading())
{
if (!isVisible())
{
Expand Down

0 comments on commit 9616d4d

Please sign in to comment.