[view] fix: management panel not fully maximizing

This commit is contained in:
Vinicius Moreira
2022-10-24 08:22:40 -03:00
parent 1c7b17a269
commit 0f28d8374f
2 changed files with 2 additions and 1 deletions

View File

@@ -9,6 +9,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
### Fixes
- AppImage
- some desktop entries not being displayed on the desktop environment menu (requires the AppImage to be reinstalled) [#287](https://github.com/vinifmor/bauh/issues/287)
- GUI
- management panel not fully maximizing
## [0.10.3] 2022-05-30

View File

@@ -459,7 +459,6 @@ class ManageWindow(QWidget):
self.setMinimumHeight(int(screen_size.height() * 0.5))
self.setMaximumHeight(int(screen_size.height()))
self.setMinimumWidth(int(screen_size.width() * 0.5))
self.setMaximumWidth(int(screen_size.width() - screen_size.width() * 0.015))
self._register_groups()
def _register_groups(self):