From 892e32ec861182a96d45a82a391965f3ab33f414 Mon Sep 17 00:00:00 2001 From: Michael Jennings Date: Wed, 28 Jun 2000 20:57:52 +0000 Subject: [PATCH] Wed Jun 28 14:14:53 PDT 2000 Michael Jennings Oops! The font size patch from the other day broke without multibyte font support enabled, which meant the XFree86 3.3.x people were screwed. Fixed now. SVN revision: 2893 --- ChangeLog | 7 +++++++ src/screen.c | 4 ++++ 2 files changed, 11 insertions(+) diff --git a/ChangeLog b/ChangeLog index b5da674..142b78f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3717,3 +3717,10 @@ Mon Jun 26 16:54:04 PDT 2000 Michael Jennings licked that BCE issue that was talked about on the mutt-dev list. ------------------------------------------------------------------------------- +Wed Jun 28 14:14:53 PDT 2000 Michael Jennings + + Oops! The font size patch from the other day broke without multibyte + font support enabled, which meant the XFree86 3.3.x people were + screwed. Fixed now. + +------------------------------------------------------------------------------- diff --git a/src/screen.c b/src/screen.c index 5af7b01..3832f77 100644 --- a/src/screen.c +++ b/src/screen.c @@ -3324,7 +3324,11 @@ void xim_get_position(XPoint *pos) pos->x += scrollbar_trough_width(); } pos->y = (Height2Pixel(screen.row) +# ifdef MULTI_CHARSET + MAX(TermWin.mfont->ascent, TermWin.font->ascent) +# else + + TermWin.font->ascent +# endif + TermWin.internalBorder + bbar_calc_docked_height(BBAR_DOCKED_TOP)); }