From bf2cdbdf1dc744220989fd7b6841362361bea766 Mon Sep 17 00:00:00 2001 From: Syarif Fakhri Date: Tue, 21 Feb 2023 12:01:37 +0800 Subject: [PATCH] remove init for --- src/AutoHideSideBar.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/AutoHideSideBar.cpp b/src/AutoHideSideBar.cpp index 966c12a..49e50ad 100644 --- a/src/AutoHideSideBar.cpp +++ b/src/AutoHideSideBar.cpp @@ -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)