[improvements][ui]

This commit is contained in:
Vinícius Moreira
2020-05-20 15:11:25 -03:00
parent 270ebbe8e9
commit 38eaaf06f8
2 changed files with 2 additions and 2 deletions

View File

@@ -516,7 +516,7 @@ class AppsTable(QTableWidget):
header_horizontal = self.horizontalHeader()
for i in range(self.columnCount()):
if maximized:
if i in (0, 1, 2):
if i not in (3, 4, 7):
header_horizontal.setSectionResizeMode(i, QHeaderView.ResizeToContents)
else:
header_horizontal.setSectionResizeMode(i, QHeaderView.Stretch)

View File

@@ -383,7 +383,7 @@ class ManageWindow(QWidget):
self.thread_load_installed = NotifyInstalledLoaded()
self.thread_load_installed.signal_loaded.connect(self._finish_loading_installed)
self.setMinimumHeight(int(screen_size.height() * 0.4))
self.setMinimumHeight(int(screen_size.height() * 0.5))
self.setMinimumWidth(int(screen_size.width() * 0.6))
def update_custom_actions(self):