Skip to content

Commit

Permalink
[win-linux] fix bug 64506
Browse files Browse the repository at this point in the history
  • Loading branch information
SimplestStudio committed Oct 6, 2023
1 parent e861f3d commit 1906a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion win-linux/src/components/ctabbar.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1149,7 +1149,7 @@ bool CTabBar::eventFilter(QObject *watched, QEvent *event)
if (mouse_event->button() == Qt::LeftButton) {
while (d->animationInProgress)
PROCESSEVENTS();
if (d->movedTab) {
if (d->movedTab && !d->lock) {
if (d->currentIndex != d->movedTabIndex) {
d->reorderIndexes();
int posX = d->tabLayouts[d->currentIndex].x();
Expand Down

0 comments on commit 1906a01

Please sign in to comment.