From b0d82eb0fd5cb7e713ec37921678108e205585c3 Mon Sep 17 00:00:00 2001 From: Sergey Linev Date: Mon, 7 Oct 2024 17:02:13 +0200 Subject: [PATCH] build with marker 8 style fix --- build/jsroot.js | 4 +--- changes.md | 1 + 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/build/jsroot.js b/build/jsroot.js index d9b9ec118..a3198f709 100644 --- a/build/jsroot.js +++ b/build/jsroot.js @@ -81274,9 +81274,7 @@ let TH1Painter$2 = class TH1Painter extends THistPainter { if (show_markers) { // draw markers also when e2 option was specified - let style = this.options.MarkStyle; - if (!style && (histo.fMarkerStyle === 1)) style = 8; // as in recent ROOT changes - this.createAttMarker({ attr: histo, style }); // when style not configured, it will be ignored + this.createAttMarker({ attr: histo, style: this.options.MarkStyle }); // when style not configured, it will be ignored if (this.markeratt.size > 0) { // simply use relative move from point, can optimize in the future path_marker = ''; diff --git a/changes.md b/changes.md index 0488f4354..8b87cb5d1 100644 --- a/changes.md +++ b/changes.md @@ -3,6 +3,7 @@ ## Changes in 7.7.x 1. Fix - can enable exponent only for log10 axis scale 2. Fix - proper set custom font size in latex +3. Fix - do not force style 8 for hist markers ## Changes in 7.7.4