about summary refs log tree commit diff
path: root/src/game
diff options
context:
space:
mode:
Diffstat (limited to 'src/game')
-rw-r--r--src/game/editor/ed_editor.cpp10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/game/editor/ed_editor.cpp b/src/game/editor/ed_editor.cpp
index 5f4347ec..270f3efd 100644
--- a/src/game/editor/ed_editor.cpp
+++ b/src/game/editor/ed_editor.cpp
@@ -1592,18 +1592,12 @@ int CEditor::DoProperties(CUIRect *pToolBox, CProperty *pProps, int *pIds, int *
 
 			if(DoButton_ButtonDec(&pIds[i], 0, 0, &Dec, 0, Localize("Decrease")))
 			{
-				if(Input()->KeyPressed(KEY_LSHIFT) || Input()->KeyPressed(KEY_RSHIFT))
-					*pNewVal = pProps[i].m_Value-5;
-				else
-					*pNewVal = pProps[i].m_Value-1;
+				*pNewVal = pProps[i].m_Value-1;
 				Change = i;
 			}
 			if(DoButton_ButtonInc(((char *)&pIds[i])+1, 0, 0, &Inc, 0, Localize("Increase")))
 			{
-				if(Input()->KeyPressed(KEY_LSHIFT) || Input()->KeyPressed(KEY_RSHIFT))
-					*pNewVal = pProps[i].m_Value+5;
-				else
-					*pNewVal = pProps[i].m_Value+1;
+				*pNewVal = pProps[i].m_Value+1;
 				Change = i;
 			}
 		}