SVN commit 1117051 by hein: Fix empty area of the tabbar becoming draggable after clicking any tab. Another patch by Timur Antipin, thanks! M +2 -0 ChangeLog M +3 -0 app/tabbar.cpp --- trunk/extragear/utils/yakuake/ChangeLog #1117050:1117051 @@ -16,6 +16,8 @@ * Fixed a bug where dragging an inactive tab to a new position on the tab bar would show the tab as selected after the drop, but the terminal area wouldn't actually show the corresponding terminal(s). +* Fixed a bug causing the empty area of the tab bar to become draggable as + if if was the last tab that had been clicked. Changes in 2.9.6: --- trunk/extragear/utils/yakuake/app/tabbar.cpp #1117050:1117051 @@ -477,6 +477,9 @@ m_mousePressed = false; + m_startPos.setX(0); + m_startPos.setY(0); + QWidget::mouseReleaseEvent(event); }