Skip to content

Commit d0398ab

Browse files
fix issue #254. matlab linewidth by 2
1 parent 90a0899 commit d0398ab

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

plotly/plotlyfig_aux/handlegraphics/updateQuiver.m

+4-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,10 @@
5151
col = 255*quiver_data.Color;
5252
obj.data{quiverIndex}.line.color = ['rgb(' num2str(col(1)) ',' num2str(col(2)) ',' num2str(col(3)) ')'];
5353

54-
%-quiver line color-%
55-
obj.data{quiverIndex}.line.width = quiver_data.LineWidth;
54+
%------------------------------------------------------------------------%
55+
56+
%-quiver line width-%
57+
obj.data{quiverIndex}.line.width = 2 * quiver_data.LineWidth;
5658

5759
%------------------------------------------------------------------------%
5860

0 commit comments

Comments
 (0)