mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 23:17:21 -06:00
Add space between widgets in left side panel. Closes #7224.
This commit is contained in:
committed by
sledgehammer999
parent
36fde9ede5
commit
dfded7bc9d
@@ -167,7 +167,12 @@ void CategoryFilterWidget::callUpdateGeometry()
|
|||||||
|
|
||||||
QSize CategoryFilterWidget::sizeHint() const
|
QSize CategoryFilterWidget::sizeHint() const
|
||||||
{
|
{
|
||||||
return viewportSizeHint();
|
return {
|
||||||
|
// Width should be exactly the width of the content
|
||||||
|
sizeHintForColumn(0),
|
||||||
|
// Height should be exactly the height of the content
|
||||||
|
static_cast<int>(sizeHintForRow(0) * (model()->rowCount() + 0.5)),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize CategoryFilterWidget::minimumSizeHint() const
|
QSize CategoryFilterWidget::minimumSizeHint() const
|
||||||
|
|||||||
@@ -156,7 +156,12 @@ void TagFilterWidget::callUpdateGeometry()
|
|||||||
|
|
||||||
QSize TagFilterWidget::sizeHint() const
|
QSize TagFilterWidget::sizeHint() const
|
||||||
{
|
{
|
||||||
return viewportSizeHint();
|
return {
|
||||||
|
// Width should be exactly the width of the content
|
||||||
|
sizeHintForColumn(0),
|
||||||
|
// Height should be exactly the height of the content
|
||||||
|
static_cast<int>(sizeHintForRow(0) * (model()->rowCount() + 0.5)),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize TagFilterWidget::minimumSizeHint() const
|
QSize TagFilterWidget::minimumSizeHint() const
|
||||||
|
|||||||
@@ -89,12 +89,12 @@ FiltersBase::FiltersBase(QWidget *parent, TransferListWidget *transferList)
|
|||||||
|
|
||||||
QSize FiltersBase::sizeHint() const
|
QSize FiltersBase::sizeHint() const
|
||||||
{
|
{
|
||||||
QSize size;
|
return {
|
||||||
// Height should be exactly the height of the content
|
// Width should be exactly the width of the content
|
||||||
size.setHeight(((sizeHintForRow(0) + 2 * spacing()) * (count() + 0.5)));
|
sizeHintForColumn(0),
|
||||||
// Width should be exactly the width of the content
|
// Height should be exactly the height of the content
|
||||||
size.setWidth(sizeHintForColumn(0));
|
static_cast<int>((sizeHintForRow(0) + 2 * spacing()) * (count() + 0.5)),
|
||||||
return size;
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
QSize FiltersBase::minimumSizeHint() const
|
QSize FiltersBase::minimumSizeHint() const
|
||||||
|
|||||||
Reference in New Issue
Block a user