1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00

Use QToolButton instead of QPushButton for tab close button.

This commit is contained in:
Nick D'Ademo 2019-08-23 10:48:14 +08:00
parent a2b07fd97f
commit fd803fa657

View File

@ -55,7 +55,7 @@ namespace ads
{
using tTabLabel = CElidingLabel;
using tCloseButton = QPushButton;
using tCloseButton = QToolButton;
/**
* Private data class of CDockWidgetTab class (pimpl)
@ -145,6 +145,7 @@ void DockWidgetTabPrivate::createLayout()
CloseButton = new tCloseButton();
CloseButton->setObjectName("tabCloseButton");
CloseButton->setAutoRaise(true); // Required in order to show the QIcon active state icon during hover
// The standard icons do does not look good on high DPI screens
QIcon CloseIcon;
QPixmap normalPixmap = _this->style()->standardPixmap(QStyle::SP_TitleBarCloseButton, 0, CloseButton);