Skip to content

Commit

Permalink
build with marker 8 style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Oct 7, 2024
1 parent bd4c7a6 commit b0d82eb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 1 addition & 3 deletions build/jsroot.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '';
Expand Down
1 change: 1 addition & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b0d82eb

Please sign in to comment.