[Libreoffice-commits] core.git: chart2/source

Kohei Yoshida kohei.yoshida at collabora.com
Wed Sep 24 13:20:14 PDT 2014


 chart2/source/view/main/ChartView.cxx |    3 +++
 1 file changed, 3 insertions(+)

New commits:
commit b067ead2ee8f162374c81b35190b0201a306ae04
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date:   Wed Sep 24 16:16:54 2014 -0400

    Don't update chart view when the controllers are locked.
    
    Change-Id: I8468925e63db3a5cc5ef3e0f942d22478fd0863e

diff --git a/chart2/source/view/main/ChartView.cxx b/chart2/source/view/main/ChartView.cxx
index 9d75323..6266b87 100644
--- a/chart2/source/view/main/ChartView.cxx
+++ b/chart2/source/view/main/ChartView.cxx
@@ -2581,6 +2581,9 @@ void ChartView::impl_updateView()
         return;
     }
 
+    if (mrChartModel.hasControllersLocked())
+        return;
+
     if( m_bViewDirty && !m_bInViewUpdate )
     {
         m_bInViewUpdate = true;


More information about the Libreoffice-commits mailing list