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:
Garux
2017-08-02 09:15:07 +03:00
parent 2455e50d72
commit 89c4e25e26
5 changed files with 42 additions and 26 deletions

View File

@@ -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 ) );