mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-10-31 22:05:58 +00:00
2620d0080c
* Avoid attempting to add a QLayout to DetailsDialog which already has a layout by removing superfluous layout setup.
33 lines
1.2 KiB
Python
33 lines
1.2 KiB
Python
# Copyright 2016 Hardcoded Software (http://www.hardcoded.net)
|
|
#
|
|
# This software is licensed under the "GPLv3" License as described in the "LICENSE" file,
|
|
# which should be included with this package. The terms are also available at
|
|
# http://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
from PyQt5.QtCore import QSize
|
|
from PyQt5.QtWidgets import QAbstractItemView
|
|
|
|
from hscommon.trans import trget
|
|
from ..details_dialog import DetailsDialog as DetailsDialogBase
|
|
from ..details_table import DetailsTable
|
|
|
|
tr = trget("ui")
|
|
|
|
|
|
class DetailsDialog(DetailsDialogBase):
|
|
def _setupUi(self):
|
|
self.setWindowTitle(tr("Details"))
|
|
self.resize(502, 186)
|
|
self.setMinimumSize(QSize(200, 0))
|
|
# self.verticalLayout = QVBoxLayout()
|
|
# self.verticalLayout.setSpacing(0)
|
|
# self.verticalLayout.setContentsMargins(0, 0, 0, 0)
|
|
self.tableView = DetailsTable(self)
|
|
self.tableView.setAlternatingRowColors(True)
|
|
self.tableView.setSelectionBehavior(QAbstractItemView.SelectRows)
|
|
self.tableView.setShowGrid(False)
|
|
# self.verticalLayout.addWidget(self.tableView)
|
|
# self.centralWidget = QWidget()
|
|
# self.centralWidget.setLayout(self.verticalLayout)
|
|
self.setWidget(self.tableView)
|