Switching the key bindings for single face select (ctrl+shift+LMB) with multi face select (ctrl+shift+alt+LMB)

This commit is contained in:
Pan7 2015-09-26 12:02:09 +02:00
parent 424958f54b
commit 296ab55ef7

View file

@ -367,7 +367,7 @@ void Drag_Begin( int x, int y, int buttons,
// ctrl-shift LBUTTON = select single face
if ( sf_camera && buttons == ( MK_LBUTTON | MK_CONTROL | MK_SHIFT ) && g_qeglobals.d_select_mode != sel_curvepoint ) {
if ( Sys_AltDown() ) {
if ( !Sys_AltDown() ) {
brush_t *b;
for ( b = selected_brushes.next ; b != &selected_brushes ; b = b->next )
{