Radiant:
misc... * fix: update projections on prev/nextleakspot * use active projection for prev/nextleakspot tracking * fix of: no redo available after ( nothing selected + M1 click ) in 2D * fix: nudge left, right, up, down commands work in scale, rotate, clipper manipulator modes * deprecated 'Disable system menu on popup windows' preference, was doing nothing * preference: Nudge selected after duplication (def = no) * preference: Left mouse click tunnel selector (def = yes)
This commit is contained in:
@@ -193,7 +193,8 @@ void Pointfile_Next( void ){
|
||||
|
||||
CamWnd& camwnd = *g_pParentWnd->GetCamWnd();
|
||||
Camera_setOrigin( camwnd, *i );
|
||||
g_pParentWnd->GetXYWnd()->SetOrigin( *i );
|
||||
g_pParentWnd->ActiveXY()->SetOrigin( *i );
|
||||
g_pParentWnd->ActiveXY()->queueDraw();
|
||||
{
|
||||
Vector3 dir( vector3_normalised( vector3_subtracted( *( ++i ), Camera_getOrigin( camwnd ) ) ) );
|
||||
Vector3 angles( Camera_getAngles( camwnd ) );
|
||||
@@ -218,7 +219,8 @@ void Pointfile_Prev( void ){
|
||||
|
||||
CamWnd& camwnd = *g_pParentWnd->GetCamWnd();
|
||||
Camera_setOrigin( camwnd, *i );
|
||||
g_pParentWnd->GetXYWnd()->SetOrigin( *i );
|
||||
g_pParentWnd->ActiveXY()->SetOrigin( *i );
|
||||
g_pParentWnd->ActiveXY()->queueDraw();
|
||||
{
|
||||
Vector3 dir( vector3_normalised( vector3_subtracted( *( ++i ), Camera_getOrigin( camwnd ) ) ) );
|
||||
Vector3 angles( Camera_getAngles( camwnd ) );
|
||||
|
||||
Reference in New Issue
Block a user