Skip to content

Commit

Permalink
Build with marker style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Oct 7, 2024
1 parent 0b52893 commit 7483f8c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -82318,9 +82318,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 = '';
Expand Down

0 comments on commit 7483f8c

Please sign in to comment.