From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 555AA1FF142 for ; Fri, 19 Jun 2026 09:39:00 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id AF7D66C25; Fri, 19 Jun 2026 09:39:03 +0200 (CEST) From: Maximiliano Sandoval To: pve-devel@lists.proxmox.com Subject: [PATCH installer] gui: set fill and expand to zero for separator Date: Fri, 19 Jun 2026 09:38:57 +0200 Message-ID: <20260619073859.128391-1-m.sandoval@proxmox.com> X-Mailer: git-send-email 2.47.3 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1781854735042 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.126 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: F5PDICQQXH4TT3I4DFG7N2RXLE5V7PNJ X-Message-ID-Hash: F5PDICQQXH4TT3I4DFG7N2RXLE5V7PNJ X-MailFrom: m.sandoval@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: Erik Fastermann X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Without this change the separator would both move and grow in size if the disk setup dialog is resized vertically. As per gtk_box_pack_end documentation: > @expand: %TRUE if the new child is to be given extra space allocated > to @box. The extra space will be divided evenly between all children > of @box that use this option > @fill: %TRUE if space given to @child by the @expand option is > actually allocated to @child, rather than just padding it. This > parameter has no effect if @expand is set to %FALSE [...] Reported-by: Erik Fastermann Signed-off-by: Maximiliano Sandoval --- proxinstall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxinstall b/proxinstall index 49b1612..2a6a7c0 100755 --- a/proxinstall +++ b/proxinstall @@ -1646,7 +1646,7 @@ sub create_hdoption_view { my $sep2 = Gtk3::Separator->new('horizontal'); $sep2->set_visible(1); - $contarea->pack_end($sep2, 1, 1, 10); + $contarea->pack_end($sep2, 0, 0, 10); $dialog->show(); -- 2.47.3