chore: update ui service manager of new service

This commit is contained in:
Benjamin Labrecque
2026-07-09 13:55:16 +02:00
parent 175ae7d7c0
commit e534a43dbd
+3 -3
View File
@@ -186,9 +186,9 @@ class ServiceManagerUI(BaseModel):
root = self.tree.getroot()
ca_include_height = self._get_height_cainclude()
height_to_add = (
ca_include_height / num_macro_elements * (num_macro_elements + 1)
) - ca_include_height
height_to_add = int(
(ca_include_height / num_macro_elements * (num_macro_elements + 1)) - ca_include_height
)
# 1. Main window
mainwindow = root.find(".//widget[@class='QMainWindow']")