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 {
7266872668 } else if ((opt === 'postitle') || painter.isDummyPos(pave)) {
7266972669 const st = gStyle, fp = painter.getFramePainter();
7267072670 if (st && fp) {
72671- const midx = st.fTitleX, y2 = st.fTitleY;
72671+ const midx = st.fTitleX, y2 = st.fTitleY, fsz = st.fTitleFontSize ;
7267272672 let w = st.fTitleW, h = st.fTitleH;
7267372673
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()) ;
7267572675 if (!w) w = fp.fX2NDC - fp.fX1NDC;
7267672676 if (!Number.isFinite(h) || (h <= 0)) h = 0.06;
7267772677 if (!Number.isFinite(w) || (w <= 0)) w = 0.44;
Original file line number Diff line number Diff line change 441 . Fix - can enable exponent only for log10 axis scale
552 . Fix - proper set custom font size in latex
663 . Fix - do not force style 8 for hist markers
7+ 4 . Fix - ensure minimal hist title height
78
89
910## Changes in 7.7.4
You can’t perform that action at this time.
0 commit comments