mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-23 04:54:18 +00:00
Merge pull request #7234 from thalieht/indentation
Remove indentation for category/tag filter widgets in all platforms
This commit is contained in:
commit
593c24e5bd
@ -73,10 +73,10 @@ CategoryFilterWidget::CategoryFilterWidget(QWidget *parent)
|
|||||||
setIconSize(Utils::Misc::smallIconSize());
|
setIconSize(Utils::Misc::smallIconSize());
|
||||||
#ifdef Q_OS_MAC
|
#ifdef Q_OS_MAC
|
||||||
setAttribute(Qt::WA_MacShowFocusRect, false);
|
setAttribute(Qt::WA_MacShowFocusRect, false);
|
||||||
|
#endif
|
||||||
m_defaultIndentation = indentation();
|
m_defaultIndentation = indentation();
|
||||||
if (!BitTorrent::Session::instance()->isSubcategoriesEnabled())
|
if (!BitTorrent::Session::instance()->isSubcategoriesEnabled())
|
||||||
setIndentation(0);
|
setIndentation(0);
|
||||||
#endif
|
|
||||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
sortByColumn(0, Qt::AscendingOrder);
|
sortByColumn(0, Qt::AscendingOrder);
|
||||||
setCurrentIndex(model()->index(0, 0));
|
setCurrentIndex(model()->index(0, 0));
|
||||||
@ -157,12 +157,11 @@ void CategoryFilterWidget::showMenu(QPoint)
|
|||||||
|
|
||||||
void CategoryFilterWidget::callUpdateGeometry()
|
void CategoryFilterWidget::callUpdateGeometry()
|
||||||
{
|
{
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
if (!BitTorrent::Session::instance()->isSubcategoriesEnabled())
|
if (!BitTorrent::Session::instance()->isSubcategoriesEnabled())
|
||||||
setIndentation(0);
|
setIndentation(0);
|
||||||
else
|
else
|
||||||
setIndentation(m_defaultIndentation);
|
setIndentation(m_defaultIndentation);
|
||||||
#endif
|
|
||||||
updateGeometry();
|
updateGeometry();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -58,7 +58,5 @@ private:
|
|||||||
void rowsInserted(const QModelIndex &parent, int start, int end) override;
|
void rowsInserted(const QModelIndex &parent, int start, int end) override;
|
||||||
QString askCategoryName();
|
QString askCategoryName();
|
||||||
|
|
||||||
#ifdef Q_OS_MAC
|
|
||||||
int m_defaultIndentation;
|
int m_defaultIndentation;
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
|
@ -73,8 +73,8 @@ TagFilterWidget::TagFilterWidget(QWidget *parent)
|
|||||||
setIconSize(Utils::Misc::smallIconSize());
|
setIconSize(Utils::Misc::smallIconSize());
|
||||||
#if defined(Q_OS_MAC)
|
#if defined(Q_OS_MAC)
|
||||||
setAttribute(Qt::WA_MacShowFocusRect, false);
|
setAttribute(Qt::WA_MacShowFocusRect, false);
|
||||||
setIndentation(0);
|
|
||||||
#endif
|
#endif
|
||||||
|
setIndentation(0);
|
||||||
setContextMenuPolicy(Qt::CustomContextMenu);
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
||||||
sortByColumn(0, Qt::AscendingOrder);
|
sortByColumn(0, Qt::AscendingOrder);
|
||||||
setCurrentIndex(model()->index(0, 0));
|
setCurrentIndex(model()->index(0, 0));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user