feat(dialogs): remove vertical scrollbar from drives_scroll

This commit is contained in:
2025-06-29 14:41:47 +07:00
parent 8e9ce356fb
commit eed14797ec

View File

@ -164,8 +164,9 @@ class FileExplorer(QDialog):
self.drives_container.setLayout(self.drives_layout)
self.drives_scroll.setWidget(self.drives_container)
self.drives_scroll.setStyleSheet(self.theme.SCROLL_AREA_STYLE)
self.drives_scroll.setFixedHeight(60)
self.drives_scroll.setFixedHeight(70)
self.main_layout.addWidget(self.drives_scroll)
self.drives_scroll.setVerticalScrollBarPolicy(Qt.ScrollBarPolicy.ScrollBarAlwaysOff)
# Путь
self.path_label = QLabel()