From b503e54210433e8c2bec50bd5af45865e85510b2 Mon Sep 17 00:00:00 2001 From: Dylan Jeannin Date: Mon, 31 Aug 2026 10:28:45 +0200 Subject: [PATCH] Split reach: not displaying the first and the last reach in the combobox --- src/View/Network/ProfileDialog.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/View/Network/ProfileDialog.py b/src/View/Network/ProfileDialog.py index 446327e7..8abc415f 100644 --- a/src/View/Network/ProfileDialog.py +++ b/src/View/Network/ProfileDialog.py @@ -74,7 +74,10 @@ class SelectProfileDialog(PamhyrDialog): list( map( lambda p: p.display_name(), - self._profiles))) + self._reach.reach.profiles[1:-1] + ) + ) + ) if len(self._profiles) == 0: self.find(QDialogButtonBox, "buttonBox")\