Selection: drop non-greedy full line selection from middle

It's too inconsistent to have greedy and non-greedy mode, and also have
tweaks to the non-greedy mode that make it greedier.
This commit is contained in:
Mike Williams 2022-12-12 12:07:40 -05:00
parent 43d4dd0b7b
commit 5ce0fe5998
1 changed files with 0 additions and 7 deletions

View File

@ -1422,13 +1422,6 @@ bool EE_SELECTION_TOOL::selectMultiple()
selected = true;
flags |= ENDPOINT;
}
if( ( selected && selectionRect.Contains( line->GetMidPoint() ) )
|| ( !selected && line->HitTest( selectionRect, false ) ) )
{
selected = true;
flags |= STARTPOINT | ENDPOINT;
}
}
}
else