From 305dc95b3ecf3495bb53c588ec627ace60f5a0b2 Mon Sep 17 00:00:00 2001 From: gryf Date: Tue, 22 Feb 2022 16:47:48 +0100 Subject: [PATCH] Re-add callback on_resize_all_windows. Without it, maximized urxvt window may contain inner border. --- tabbedalt | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tabbedalt b/tabbedalt index b9e56c7..863f5b3 100644 --- a/tabbedalt +++ b/tabbedalt @@ -336,6 +336,15 @@ sub configure { ); } +# this is needed just to properly resize terminal to fill available space +# without it Window Maker will make window smaller then required, therefore +# we'll get ugly border. +_on resize_all_windows => sub { + my ($self, $width, $height) = @_; + + 1 +}; + sub copy_properties { my ($self) = @_; my $tab = $self->{cur};