Skip to content

Commit b025e3a

Browse files
committed
Add missing SIP bits
1 parent 04b2239 commit b025e3a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

python/core/qgsmapsettings.sip

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ class QgsMapSettings
116116
UseRenderingOptimization, //!< Enable vector simplification and other rendering optimizations
117117
DrawSelection, //!< Whether vector selections should be shown in the rendered map
118118
DrawSymbolBounds, //!< Draw bounds of symbols (for debugging/testing)
119-
RenderMapTile //!< Draw map such that there are no problems between adjacent tiles
119+
RenderMapTile, //!< Draw map such that there are no problems between adjacent tiles
120+
RenderPartialOutput, //!< Whether to make extra effort to update map image with partially rendered layers (better for interactive map canvas). Added in QGIS 3.0
120121
};
121122
typedef QFlags<QgsMapSettings::Flag> Flags;
122123

python/core/qgsrendercontext.sip

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class QgsRenderContext
2323
DrawSymbolBounds, //!< Draw bounds of symbols (for debugging/testing)
2424
RenderMapTile, //!< Draw map such that there are no problems between adjacent tiles
2525
Antialiasing, //!< Use antialiasing while drawing
26+
RenderPartialOutput, //!< Whether to make extra effort to update map image with partially rendered layers (better for interactive map canvas). Added in QGIS 3.0
2627
};
2728
typedef QFlags<QgsRenderContext::Flag> Flags;
2829

0 commit comments

Comments
 (0)