1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-03-16 02:59:51 +08:00

Add missing update style to dock widget side tab

This commit is contained in:
Syarif Fakhri 2022-09-13 14:21:01 +08:00
parent 263c73188a
commit daa52e109e

View File

@ -271,6 +271,7 @@ void CDockWidgetSideTab::setOrientation(Qt::Orientation Orientation)
d->Orientation = Orientation;
d->Layout->setDirection(Orientation == Qt::Vertical ? QBoxLayout::TopToBottom : QBoxLayout::LeftToRight);
d->TitleLabel->setOrientation(Orientation);
updateStyle();
}