From bd3c7ecf35049fbeebda45a9a515f46aedd8e1df Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Fri, 30 Oct 2020 18:38:48 -0400 Subject: [PATCH] try for #266 --- simpledisplay.d | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index bbc711e..7f25a70 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -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