From 04cf845d7795fdbabb04d39a60675fc50615872b Mon Sep 17 00:00:00 2001 From: Chris Hennes Date: Thu, 25 Mar 2021 09:34:06 -0500 Subject: [PATCH] [GUI] Remove explicit triangle styling from tabs On Windows the lower tabs of the PropertyView were being set to triangular, which breaks stylesheets. This removes that code, so they now take on whatever the standard shape is on the system. Fixes #0004599 --- src/Gui/PropertyView.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Gui/PropertyView.cpp b/src/Gui/PropertyView.cpp index eef9f699cb..4bae844d0a 100644 --- a/src/Gui/PropertyView.cpp +++ b/src/Gui/PropertyView.cpp @@ -89,9 +89,6 @@ PropertyView::PropertyView(QWidget *parent) tabs = new QTabWidget (this); tabs->setObjectName(QString::fromUtf8("propertyTab")); tabs->setTabPosition(QTabWidget::South); -#if defined(Q_OS_WIN32) - tabs->setTabShape(QTabWidget::Triangular); -#endif pLayout->addWidget(tabs, 0, 0); propertyEditorView = new Gui::PropertyEditor::PropertyEditor();