use triangular tabs in property view only on Windows
This commit is contained in:
parent
36e1d072a6
commit
7756c27685
|
@ -57,7 +57,6 @@ CombiView::CombiView(Gui::Document* pcDocument, QWidget *parent)
|
|||
tabs = new QTabWidget ();
|
||||
tabs->setObjectName(QString::fromUtf8("combiTab"));
|
||||
tabs->setTabPosition(QTabWidget::North);
|
||||
//tabs->setTabShape(QTabWidget::Triangular);
|
||||
pLayout->addWidget( tabs, 0, 0 );
|
||||
|
||||
// splitter between tree and property view
|
||||
|
|
|
@ -70,7 +70,9 @@ 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();
|
||||
|
|
Loading…
Reference in New Issue
Block a user