fix: avoid holes when moving tabs (#5612)

This commit is contained in:
nerix
2024-10-05 13:09:23 +02:00
committed by GitHub
parent 06d9a37709
commit 94e266ac82
2 changed files with 1 additions and 6 deletions
-5
View File
@@ -412,11 +412,6 @@ void NotebookTab::moveAnimated(QPoint targetPos, bool animated)
{
this->positionAnimationDesiredPoint_ = targetPos;
if (this->pos() == targetPos)
{
return;
}
if (!animated || !this->notebook_->isVisible())
{
this->move(targetPos);