From 751a316bd5380b3b2fa5a643b6363be12393f3b3 Mon Sep 17 00:00:00 2001 From: yggverse Date: Sat, 20 Jul 2024 18:01:20 +0300 Subject: [PATCH] add horizontal margin --- src/Entity/Browser/Header/Tray.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Entity/Browser/Header/Tray.php b/src/Entity/Browser/Header/Tray.php index c5c5c8bc..edb51ba4 100644 --- a/src/Entity/Browser/Header/Tray.php +++ b/src/Entity/Browser/Header/Tray.php @@ -37,6 +37,14 @@ class Tray \GtkOrientation::HORIZONTAL ); + $this->gtk->set_margin_start( + $this->_margin / 2 + ); + + $this->gtk->set_margin_end( + $this->_margin / 2 + ); + $this->gtk->set_spacing( $this->_margin );