diff options
| -rw-r--r-- | src/tabbar.cpp | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/src/tabbar.cpp b/src/tabbar.cpp index 1274d813..5d6b7b2c 100644 --- a/src/tabbar.cpp +++ b/src/tabbar.cpp @@ -186,6 +186,11 @@ void TabBar::showTabPreview(int tab)  void TabBar::mouseMoveEvent(QMouseEvent *event)  { +    if (count() == 1) +    { +        return; +    } +      if (event->buttons() & Qt::LeftButton)      {          // hide addNewTabButton when moving tabs | 
