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

Merge pull request #8 from duerr-ndt/revert-1-use_qtoolbutton_for_close

Revert "Use QToolButton instead of QPushButton for tab close button."
This commit is contained in:
Nick D'Ademo 2019-10-15 15:06:06 +08:00 committed by GitHub
commit 8dab436680
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -55,7 +55,7 @@ namespace ads
{
using tTabLabel = CElidingLabel;
using tCloseButton = QToolButton;
using tCloseButton = QPushButton;
/**
* Private data class of CDockWidgetTab class (pimpl)
@ -145,7 +145,6 @@ 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);