mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-08 07:24:15 +02:00
[view] improvement: using pre-defined sizes for the main window
This commit is contained in:
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
|
## [0.10.3]
|
||||||
|
|
||||||
|
### Improvements
|
||||||
|
- UI
|
||||||
|
- using pre-defined sizes for the main window (percentages do not work well with the current UI)
|
||||||
|
|
||||||
## [0.10.2] 2022-04-16
|
## [0.10.2] 2022-04-16
|
||||||
### Improvements
|
### Improvements
|
||||||
- Arch
|
- Arch
|
||||||
|
|||||||
@@ -453,8 +453,8 @@ class ManageWindow(QWidget):
|
|||||||
|
|
||||||
self.thread_load_installed = NotifyInstalledLoaded()
|
self.thread_load_installed = NotifyInstalledLoaded()
|
||||||
self.thread_load_installed.signal_loaded.connect(self._finish_loading_installed)
|
self.thread_load_installed.signal_loaded.connect(self._finish_loading_installed)
|
||||||
self.setMinimumHeight(int(screen_size.height() * 0.5))
|
self.setMinimumHeight(550)
|
||||||
self.setMinimumWidth(int(screen_size.width() * 0.6))
|
self.setMinimumWidth(1000)
|
||||||
self._register_groups()
|
self._register_groups()
|
||||||
|
|
||||||
def _register_groups(self):
|
def _register_groups(self):
|
||||||
|
|||||||
Reference in New Issue
Block a user