Control: tags -1 fixed-upstream patch I confirm that the patch from https://github.com/pwmt/zathura/pull/788 resolves the issue.
-- Vincent Lefèvre <[email protected]> - Web: <https://www.vinc17.net/> 100% accessible validated (X)HTML - Blog: <https://www.vinc17.net/blog/> Work: CR INRIA - computer arithmetic / Pascaline project (LIP, ENS-Lyon)
>From 8bdfb5c3a844edee72008a07abb5163416eecf20 Mon Sep 17 00:00:00 2001 From: Josh <[email protected]> Date: Sat, 30 Aug 2025 16:21:01 +1000 Subject: [PATCH] update view when session view size changes --- zathura/zathura.c | 1 + 1 file changed, 1 insertion(+) diff --git a/zathura/zathura.c b/zathura/zathura.c index 386f8fd5..b22f163c 100644 --- a/zathura/zathura.c +++ b/zathura/zathura.c @@ -260,6 +260,7 @@ static bool init_ui(zathura_t* zathura) { } g_signal_connect(G_OBJECT(zathura->ui.session->gtk.window), "size-allocate", G_CALLBACK(cb_view_resized), zathura); + g_signal_connect(G_OBJECT(zathura->ui.session->gtk.view), "size-allocate", G_CALLBACK(cb_view_resized), zathura); GtkAdjustment* hadjustment = gtk_scrolled_window_get_hadjustment(GTK_SCROLLED_WINDOW(zathura->ui.session->gtk.view));

