From 7a648474c899db0a7687dd0d717e7997fa63a785 Mon Sep 17 00:00:00 2001 From: Sergiotarxz Date: Mon, 4 Mar 2024 01:43:13 +0100 Subject: [PATCH] Disabling horizontal scroll in log. --- lib/GEmeTool/View/LogWindow.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/GEmeTool/View/LogWindow.pm b/lib/GEmeTool/View/LogWindow.pm index 1c89bee..85b484d 100644 --- a/lib/GEmeTool/View/LogWindow.pm +++ b/lib/GEmeTool/View/LogWindow.pm @@ -76,6 +76,8 @@ sub fill_logs_win { $i++; } my $scroll = Gtk4::ScrolledWindow->new; + $scroll->set_propagate_natural_width(1); + $scroll->set_policy('never', 'automatic'); $scroll->set_child($grid_log); $win->set_child($scroll); }