mirror of https://github.com/adamdruppe/arsd.git
try for #266
This commit is contained in:
parent
851f6b144c
commit
bd3c7ecf35
|
@ -7003,9 +7003,12 @@ class OperatingSystemFont {
|
||||||
// Assuming monospace!!!!!
|
// Assuming monospace!!!!!
|
||||||
// added March 26, 2020
|
// added March 26, 2020
|
||||||
int averageWidth() {
|
int averageWidth() {
|
||||||
version(X11)
|
version(X11) {
|
||||||
return font.max_bounds.width;
|
if(font is null)
|
||||||
else version(Windows)
|
return 0;
|
||||||
|
else
|
||||||
|
return font.max_bounds.width;
|
||||||
|
} else version(Windows)
|
||||||
return width_;
|
return width_;
|
||||||
else assert(0);
|
else assert(0);
|
||||||
}
|
}
|
||||||
|
@ -12100,7 +12103,7 @@ enum NotifyModes:int
|
||||||
NotifyUngrab =2,
|
NotifyUngrab =2,
|
||||||
NotifyWhileGrabbed =3
|
NotifyWhileGrabbed =3
|
||||||
}
|
}
|
||||||
const int NotifyHint =1; /* for MotionNotify events */
|
enum NotifyHint = 1; /* for MotionNotify events */
|
||||||
|
|
||||||
/* Notify detail */
|
/* Notify detail */
|
||||||
enum NotifyDetail:int
|
enum NotifyDetail:int
|
||||||
|
|
Loading…
Reference in New Issue