mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-09 11:30:51 +00:00
Switching the key bindings for single face select (ctrl+shift+LMB) with multi face select (ctrl+shift+alt+LMB)
This commit is contained in:
parent
424958f54b
commit
296ab55ef7
1 changed files with 1 additions and 1 deletions
|
@ -367,7 +367,7 @@ void Drag_Begin( int x, int y, int buttons,
|
||||||
|
|
||||||
// ctrl-shift LBUTTON = select single face
|
// ctrl-shift LBUTTON = select single face
|
||||||
if ( sf_camera && buttons == ( MK_LBUTTON | MK_CONTROL | MK_SHIFT ) && g_qeglobals.d_select_mode != sel_curvepoint ) {
|
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;
|
brush_t *b;
|
||||||
for ( b = selected_brushes.next ; b != &selected_brushes ; b = b->next )
|
for ( b = selected_brushes.next ; b != &selected_brushes ; b = b->next )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue