From c562a2e540a4ed3ebea61a7e7e98908e8c771819 Mon Sep 17 00:00:00 2001 From: Nyall Dawson Date: Mon, 5 Mar 2018 15:54:07 +1000 Subject: [PATCH] [layouts] Fix missing call to base class method --- src/core/layout/qgslayouttable.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/layout/qgslayouttable.cpp b/src/core/layout/qgslayouttable.cpp index 7ec1d92fb8c..fdd4f3f6902 100644 --- a/src/core/layout/qgslayouttable.cpp +++ b/src/core/layout/qgslayouttable.cpp @@ -196,6 +196,7 @@ QSizeF QgsLayoutTable::totalSize() const void QgsLayoutTable::refresh() { + QgsLayoutMultiFrame::refresh(); refreshAttributes(); }