[Libreoffice-commits] core.git: Branch 'libreoffice-7-0' - vcl/source

Noel Grandin (via logerrit) logerrit at kemper.freedesktop.org
Tue Jun 16 09:23:52 UTC 2020


 vcl/source/control/prgsbar.cxx |    1 +
 1 file changed, 1 insertion(+)

New commits:
commit 33f3f50bd507bd2a2fa6efdfe935be5b7d648f3b
Author:     Noel Grandin <noelgrandin at gmail.com>
AuthorDate: Sat Jun 13 19:34:28 2020 +0200
Commit:     Adolfo Jayme Barrientos <fitojb at ubuntu.com>
CommitDate: Tue Jun 16 11:23:20 2020 +0200

    tdf#131942 no progress bar when saving in calc
    
    regression from
        commit a7de363cead5cd0021d2e3df4573d4cbe27df23b
        remove unnecessary Window::Update() calls, which immediately follow Invalidate
    
    Change-Id: I2525acc9da786c0908bde5f8553258382f7cd45c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96261
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
    (cherry picked from commit fc617677dedc2ee6f52149bac71195420bc351f3)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96288
    Reviewed-by: Adolfo Jayme Barrientos <fitojb at ubuntu.com>

diff --git a/vcl/source/control/prgsbar.cxx b/vcl/source/control/prgsbar.cxx
index a99c84af2d4e..7082042df261 100644
--- a/vcl/source/control/prgsbar.cxx
+++ b/vcl/source/control/prgsbar.cxx
@@ -169,6 +169,7 @@ void ProgressBar::SetValue( sal_uInt16 nNewPercent )
         if ( IsReallyVisible() )
         {
             Invalidate();
+            PaintImmediately();
         }
     }
     else if ( mnPercent != nNewPercent )


More information about the Libreoffice-commits mailing list