From 296ab55ef7d74f3762a5a8e8f3454014ab5d2a42 Mon Sep 17 00:00:00 2001 From: Pan7 Date: Sat, 26 Sep 2015 12:02:09 +0200 Subject: [PATCH] Switching the key bindings for single face select (ctrl+shift+LMB) with multi face select (ctrl+shift+alt+LMB) --- radiant/drag.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/radiant/drag.cpp b/radiant/drag.cpp index a6c2bf0d..3840d578 100644 --- a/radiant/drag.cpp +++ b/radiant/drag.cpp @@ -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 ) {