Wed Jun 28 14:14:53 PDT 2000 Michael Jennings <mej@eterm.org>

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
This commit is contained in:
Michael Jennings 2000-06-28 20:57:52 +00:00
parent e458986d63
commit 892e32ec86
2 changed files with 11 additions and 0 deletions

View File

@ -3717,3 +3717,10 @@ Mon Jun 26 16:54:04 PDT 2000 Michael Jennings <mej@eterm.org>
licked that BCE issue that was talked about on the mutt-dev list.
-------------------------------------------------------------------------------
Wed Jun 28 14:14:53 PDT 2000 Michael Jennings <mej@eterm.org>
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.
-------------------------------------------------------------------------------

View File

@ -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));
}