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 #1 from duerr-ndt/use_qtoolbutton_for_close

Use QToolButton instead of QPushButton for tab close button.
This commit is contained in:
Nick D'Ademo 2019-08-25 16:06:44 +08:00 committed by GitHub
commit 2762b27c5f
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 = 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);