repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 2b228b65a204db61e554f7ff00c4d0d45ff18628: path_to: revision_to:
commit 2b228b65a204db61e554f7ff00c4d0d45ff18628 Author: Marc LehmannDate: Fri Nov 14 11:06:49 2014 +0000 *** empty log message *** diff --git a/Changes b/Changes
--- a/Changes +++ b/Changes @@ -36,6 +36,8 @@ TODO IMPL: recalc bg always on bg colour change TODO: document typical actions in rxvt.1.pod keysyms TODO: warn with a graphical message when env has been modified + - fix pixel droppings on overdraw when a secondary core font has the + same height but different ascent. - add DECSCUSR xterm extension to set the cursor to a vertical bar. - add 'extension:string' action, and associated on_action perl hook, for keysym resources that invokes actions provided by diff --git a/src/rxvtfont.C b/src/rxvtfont.C
--- a/src/rxvtfont.C
+++ b/src/rxvtfont.C
@@ -1047,7 +1047,8 @@ rxvt_font_x11::draw (rxvt_drawable &d, int x, int y,
bool slow = this->slow
|| width != term->fwidth
- || height != term->fheight;
+ || height != term->fheight
+ || ascent != f->ascent;
int base = ascent; // sorry, incorrect: term->fbase;
-----END OF PAGE-----