Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file modified build.sh
100644 → 100755
Empty file.
5 changes: 5 additions & 0 deletions src/cartogram_info/cartogram_info.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,11 @@ void CartogramInfo::write_shifted_insets()

void CartogramInfo::write_svg(const std::string &suffix)
{
// Skip SVG output if redirect_exports_to_stdout is enabled
if (args_.redirect_exports_to_stdout) {
return;
}

InsetState insets_combined = convert_to_inset_state();
insets_combined.rescale_map();

Expand Down