changeset 28228:298977286479 stable

legend.m: display actual marker size up to 8 points
author Pantxo Diribarne <pantxo.diribarne@gmail.com>
date Sat, 18 Apr 2020 20:32:21 +0200
parents fbced93c9704
children 50d83252f867
files scripts/plot/appearance/legend.m
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/plot/appearance/legend.m	Thu Apr 16 11:48:06 2020 -0700
+++ b/scripts/plot/appearance/legend.m	Sat Apr 18 20:32:21 2020 +0200
@@ -1063,8 +1063,8 @@
 
 function update_marker_cb (h)
 
-  if (get (h, "markersize") > 3)
-    set (h, "markersize", 3);
+  if (get (h, "markersize") > 8)
+    set (h, "markersize", 8);
   endif
 
 endfunction