diff options
Diffstat (limited to 'win32')
-rw-r--r-- | win32/SurfaceD2D.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/SurfaceD2D.cxx b/win32/SurfaceD2D.cxx index b49e5d6f6..fa8383a84 100644 --- a/win32/SurfaceD2D.cxx +++ b/win32/SurfaceD2D.cxx @@ -1066,7 +1066,7 @@ void ScreenLineLayout::FillTextLayoutFormats(const IScreenLine *screenLine, IDWr representationWidth = nextTab - realPt.x; } if (representationWidth > 0.0f) { - blobs.push_back(BlobInline(representationWidth)); + blobs.emplace_back(representationWidth); textLayout->SetInlineObject(&blobs.back(), textRange); }; |