File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -72668,10 +72668,10 @@ class TPavePainter extends ObjectPainter {
72668
72668
} else if ((opt === 'postitle') || painter.isDummyPos(pave)) {
72669
72669
const st = gStyle, fp = painter.getFramePainter();
72670
72670
if (st && fp) {
72671
- const midx = st.fTitleX, y2 = st.fTitleY;
72671
+ const midx = st.fTitleX, y2 = st.fTitleY, fsz = st.fTitleFontSize ;
72672
72672
let w = st.fTitleW, h = st.fTitleH;
72673
72673
72674
- if (!h) h = ( y2 - fp.fY2NDC) * 0.7;
72674
+ if (!h) h = Math.max(( y2 - fp.fY2NDC) * 0.7, (fsz < 1) ? 1.1 * fsz : 1.1 * fsz / fp.getFrameWidth()) ;
72675
72675
if (!w) w = fp.fX2NDC - fp.fX1NDC;
72676
72676
if (!Number.isFinite(h) || (h <= 0)) h = 0.06;
72677
72677
if (!Number.isFinite(w) || (w <= 0)) w = 0.44;
Original file line number Diff line number Diff line change 4
4
1 . Fix - can enable exponent only for log10 axis scale
5
5
2 . Fix - proper set custom font size in latex
6
6
3 . Fix - do not force style 8 for hist markers
7
+ 4 . Fix - ensure minimal hist title height
7
8
8
9
9
10
## Changes in 7.7.4
You can’t perform that action at this time.
0 commit comments