From: Michael D. Lowis Date: Thu, 18 May 2017 02:14:27 +0000 (-0400) Subject: change line spacing to 0 on osx X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=3b0efa93ada93eb9415d28c7c3bdf4bf9c7b79aa;p=projs%2Ftide.git change line spacing to 0 on osx --- diff --git a/inc/edit.h b/inc/edit.h index 857a1e0..e4a2b1f 100644 --- a/inc/edit.h +++ b/inc/edit.h @@ -213,7 +213,11 @@ enum { BufSize = 8192, /* default buffer size */ FontCacheSize = 16, /* Maximum number of fonts allowed in the font cache */ EventTimeout = 100, /* Maximum blocking wait time for events */ +#ifdef __MACH__ + LineSpacing = 0, /* Number of pixels for spacing between lines */ +#else LineSpacing = 2, /* Number of pixels for spacing between lines */ +#endif }; /* choose the font to use for xft */