@@ -1771,10 +1771,10 @@ void TerminalDisplay::extendSelection( const QPoint& position )
17711771 int i;
17721772 int selClass;
17731773
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 () );
17781778 swapping = left_not_right != old_left_not_right;
17791779
17801780 // Find left (left_not_right ? from here : from start)
@@ -1848,10 +1848,10 @@ void TerminalDisplay::extendSelection( const QPoint& position )
18481848 int i;
18491849 int selClass;
18501850
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 () );
18551855 swapping = left_not_right != old_left_not_right;
18561856
18571857 // Find left (left_not_right ? from here : from start)
0 commit comments