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

remove init for

This commit is contained in:
Syarif Fakhri 2023-02-21 12:01:37 +08:00
parent e949dcd9b6
commit bf2cdbdf1d

View File

@ -420,7 +420,8 @@ void CAutoHideSideBar::onAutoHideTabMoving(const QPoint &GlobalPos)
sp_retain.setRetainSizeWhenHidden(true);
d->PlaceholderTab->setSizePolicy(sp_retain);
if (const auto index = d->TabsLayout->indexOf(MovingTab); index > -1)
const auto index = d->TabsLayout->indexOf(MovingTab);
if (index > -1)
{
// First time moving, set the placeholder tab into the moving tab position
d->TabsLayout->removeWidget(MovingTab);
@ -443,7 +444,7 @@ void CAutoHideSideBar::onAutoHideTabMoving(const QPoint &GlobalPos)
CAutoHideTab *DropTab = tab(i);
// Truncate the geometry so that it will only switch if the mouse is still outside the tab after switching
// This prevents tab flickering while dragging
// This prevents the tab position flickering back and forth while dragging
const auto geometry = DropTab->geometry();
auto truncatedGeometry = geometry;
if (d->PlaceholderTab->orientation() == Qt::Vertical)