Skip to content
Merged
Changes from all commits
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
2 changes: 1 addition & 1 deletion src/grdview.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,9 +608,9 @@ static int parse (struct GMT_CTRL *GMT, struct GRDVIEW_CTRL *Ctrl, struct GMT_OP
n_errors += gmt_default_option_error (GMT, opt);
break;
case 'N': /* Facade */
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
if (opt->arg[0]) {
char colors[GMT_LEN64] = {""};
n_errors += gmt_M_repeated_module_option (API, Ctrl->N.active);
if ((c = strstr (opt->arg, "+g")) != NULL) { /* Gave modifier +g<fill> */
c[0] = '\0'; /* Truncate string temporarily */
if (opt->arg[0])
Expand Down
Loading