GUI dpi scaling?

Thanks!

For the record, things get better in the classic GUI by adding the following to .rootrc:

Gui.DefaultFont:            -*-helvetica-medium-r-*-*-24-*-*-*-*-*-iso8859-1
Gui.MenuFont:               -*-helvetica-medium-r-*-*-24-*-*-*-*-*-iso8859-1
Gui.MenuHiFont:             -*-helvetica-bold-r-*-*-24-*-*-*-*-*-iso8859-1
Gui.DocFixedFont:           -*-courier-medium-r-*-*-24-*-*-*-*-*-iso8859-1
Gui.DocPropFont:            -*-helvetica-medium-r-*-*-24-*-*-*-*-*-iso8859-1
Gui.IconFont:               -*-helvetica-medium-r-*-*-20-*-*-*-*-*-iso8859-1
Gui.StatusFont:             -*-helvetica-medium-r-*-*-20-*-*-*-*-*-iso8859-1
Browser.IconStyle:           big

and the following to .rootlogon.C:


    gStyle->SetCanvasDefH(2*gStyle->GetCanvasDefH());
    gStyle->SetCanvasDefW(2*gStyle->GetCanvasDefW());
    gStyle->SetFrameBorderSize(2*gStyle->GetFrameBorderSize());
    gStyle->SetFrameLineWidth(2*gStyle->GetFrameLineWidth());
    gStyle->SetFuncWidth(2*gStyle->GetFuncWidth());
    gStyle->SetGridWidth(2*gStyle->GetGridWidth());
    gStyle->SetHistLineWidth(2*gStyle->GetHistLineWidth());

    // optional
    //gROOT->ForceStyle();
3 Likes