mirror of https://github.com/adamdruppe/arsd.git
more dpi experimentation
This commit is contained in:
parent
06ce4090af
commit
d88371e42c
|
@ -1849,7 +1849,7 @@ class SimpleWindow : CapableOfHandlingNativeEvent, CapableOfBeingDrawnUpon {
|
|||
MonitorInfo.info ~= MonitorInfo(
|
||||
Rectangle(Point(monitor.x, monitor.y), Size(monitor.width, monitor.height)),
|
||||
Size(monitor.mwidth, monitor.mheight),
|
||||
cast(int) (customScalingFactorForMonitor(cast(int) idx) * 96)
|
||||
cast(int) (customScalingFactorForMonitor(cast(int) idx) * getDpi()[0])
|
||||
);
|
||||
|
||||
/+
|
||||
|
|
|
@ -9047,6 +9047,8 @@ version(TerminalDirectToEmulator) {
|
|||
auto xft = getXftDpi();
|
||||
if(xft is float.init)
|
||||
xft = 96;
|
||||
// the xft passed as assumed means it will figure that's what the size
|
||||
// is based on (which it is, inside xft) preventing the double scale problem
|
||||
fontSize = widget.scaleWithDpi(fontSize, cast(int) xft);
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue