@@ -1771,10 +1771,10 @@ void TerminalDisplay::extendSelection( const QPoint& position )
1771
1771
int i;
1772
1772
int selClass;
1773
1773
1774
- bool left_not_right = ( here.y () < _iPntSelCorr.y () ||
1775
- here.y () == _iPntSelCorr.y () && here.x () < _iPntSelCorr.x () );
1776
- bool old_left_not_right = ( _pntSelCorr.y () < _iPntSelCorr.y () ||
1777
- _pntSelCorr.y () == _iPntSelCorr.y () && _pntSelCorr.x () < _iPntSelCorr.x () );
1774
+ bool left_not_right = here.y () < _iPntSelCorr.y () ||
1775
+ ( here.y () == _iPntSelCorr.y () && here.x () < _iPntSelCorr.x () );
1776
+ bool old_left_not_right = _pntSelCorr.y () < _iPntSelCorr.y () ||
1777
+ ( _pntSelCorr.y () == _iPntSelCorr.y () && _pntSelCorr.x () < _iPntSelCorr.x () );
1778
1778
swapping = left_not_right != old_left_not_right;
1779
1779
1780
1780
// Find left (left_not_right ? from here : from start)
@@ -1848,10 +1848,10 @@ void TerminalDisplay::extendSelection( const QPoint& position )
1848
1848
int i;
1849
1849
int selClass;
1850
1850
1851
- bool left_not_right = ( here.y () < _iPntSelCorr.y () ||
1852
- here.y () == _iPntSelCorr.y () && here.x () < _iPntSelCorr.x () );
1853
- bool old_left_not_right = ( _pntSelCorr.y () < _iPntSelCorr.y () ||
1854
- _pntSelCorr.y () == _iPntSelCorr.y () && _pntSelCorr.x () < _iPntSelCorr.x () );
1851
+ bool left_not_right = here.y () < _iPntSelCorr.y () ||
1852
+ ( here.y () == _iPntSelCorr.y () && here.x () < _iPntSelCorr.x () );
1853
+ bool old_left_not_right = _pntSelCorr.y () < _iPntSelCorr.y () ||
1854
+ ( _pntSelCorr.y () == _iPntSelCorr.y () && _pntSelCorr.x () < _iPntSelCorr.x () );
1855
1855
swapping = left_not_right != old_left_not_right;
1856
1856
1857
1857
// Find left (left_not_right ? from here : from start)
0 commit comments