This commit is contained in:
Adam D. Ruppe 2020-10-30 18:38:48 -04:00
parent 851f6b144c
commit bd3c7ecf35
1 changed files with 7 additions and 4 deletions

View File

@ -7003,9 +7003,12 @@ class OperatingSystemFont {
// Assuming monospace!!!!!
// added March 26, 2020
int averageWidth() {
version(X11)
return font.max_bounds.width;
else version(Windows)
version(X11) {
if(font is null)
return 0;
else
return font.max_bounds.width;
} else version(Windows)
return width_;
else assert(0);
}
@ -12100,7 +12103,7 @@ enum NotifyModes:int
NotifyUngrab =2,
NotifyWhileGrabbed =3
}
const int NotifyHint =1; /* for MotionNotify events */
enum NotifyHint = 1; /* for MotionNotify events */
/* Notify detail */
enum NotifyDetail:int