Skip to content

Commit

Permalink
Do not let -Bz trigger x-y basemap
Browse files Browse the repository at this point in the history
Closes #4181.
  • Loading branch information
PaulWessel committed Oct 6, 2020
1 parent 840b8be commit 77d2c93
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/gmt_init.c
Original file line number Diff line number Diff line change
Expand Up @@ -3624,8 +3624,10 @@ GMT_LOCAL int gmtinit_set_titem (struct GMT_CTRL *GMT, struct GMT_PLOT_AXIS *A,
break;
}

GMT->current.map.frame.draw = true;
if (axis == 'z') GMT->current.map.frame.drawz = true;
if (axis == 'z')
GMT->current.map.frame.drawz = true;
else
GMT->current.map.frame.draw = true;

return (GMT_NOERROR);
}
Expand Down

0 comments on commit 77d2c93

Please sign in to comment.