Skip to content

Commit a667c42

Browse files
author
Meghan Jones
authored
Use non-scaled pen default for +p (#5265)
* Use non-scaled pen default for +p * Fix typo * Add (void) before gmt_getpen * Update PostScript files
1 parent 43ff8ef commit a667c42

File tree

9 files changed

+1
-1
lines changed

9 files changed

+1
-1
lines changed

doc/examples/ex22/ex22.ps

79 Bytes
Binary file not shown.

doc/examples/ex31/ex31.ps

106 Bytes
Binary file not shown.

doc/examples/ex41/ex41.ps

-5 Bytes
Binary file not shown.

doc/examples/ex42/ex42.ps

-4 Bytes
Binary file not shown.

doc/scripts/GMT_legend.ps

-5 Bytes
Binary file not shown.

doc/scripts/GMT_mag_rose.ps

58 Bytes
Binary file not shown.

doc/scripts/GMT_mapscale.ps

29 Bytes
Binary file not shown.

doc/scripts/GMT_seislegend.ps

-5 Bytes
Binary file not shown.

src/gmt_support.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13539,7 +13539,7 @@ int gmt_getpanel (struct GMT_CTRL *GMT, char option, char *text, struct GMT_MAP_
1353913539
P->radius = GMT->session.u2u[GMT_PT][GMT_INCH] * GMT_FRAME_RADIUS; /* 6 pt */
1354013540
gmt_init_fill (GMT, &P->fill, -1.0, -1.0, -1.0); /* Default is no fill unless specified */
1354113541
gmt_init_fill (GMT, &P->sfill, gmt_M_is255 (127), gmt_M_is255 (127), gmt_M_is255 (127)); /* Default if gray shade is used */
13542-
P->pen1 = GMT->current.setting.map_frame_pen; /* Heavier pen for main outline */
13542+
(void) gmt_getpen (GMT, "thicker,black", &P->pen1); /* Heavier pen for main outline */
1354313543
P->pen2 = GMT->current.setting.map_default_pen; /* Thinner pen for optional inner outline */
1354413544
P->debug_pen = GMT->current.setting.map_default_pen; /* Thinner pen for optional inner outline */
1354513545
P->gap = GMT->session.u2u[GMT_PT][GMT_INCH] * GMT_FRAME_GAP; /* Default is 2p */

0 commit comments

Comments
 (0)