repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: fdee48de2391f46630d499630f7286b9e8221865: path_to: revision_to:
commit fdee48de2391f46630d499630f7286b9e8221865 Author: Mikael MagnussonDate: Mon Jan 9 17:57:04 2012 +0000 revert previous commit diff --git a/Changes b/Changes
--- a/Changes +++ b/Changes @@ -23,8 +23,6 @@ TODO: split ROW into a ROW_fast (0..total*2-1) and ROW macros? - fix parsing of bg image styles. They really work now. - fix blurring of bg image borders when using xrender. - - fix incorrect size of tab windows in the tabbed extension that - caused extra padding. 9.14 Wed Dec 21 18:40:33 CET 2011 - INCOMPATIBLE CHANGE: the urxvtd default socket path is now diff --git a/src/perl/tabbed b/src/perl/tabbed
--- a/src/perl/tabbed
+++ b/src/perl/tabbed
@@ -79,14 +79,12 @@ sub configure {
$tab->XMoveResizeWindow (
$tab->parent,
0, $self->{tabheight} + 1,
- $self->width,
- $self->height - $self->{tabheight} + 2 * $tab->int_bwidth
+ $self->width, $self->height - $self->{tabheight}
);
$tab->XMoveResizeWindow (
$tab->parent,
0, $self->{tabheight},
- $self->width,
- $self->height - $self->{tabheight} + 2 * $tab->int_bwidth
+ $self->width, $self->height - $self->{tabheight}
);
}
-----END OF PAGE-----