Browse Source

removed negative x/y check, was causing us to reset the display position sometimes

ScottBrogden 8 years ago
parent
commit
4cde64975b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Options.cpp

+ 2 - 2
Options.cpp

@@ -790,11 +790,11 @@ void CGetSetOptions::GetQuickPastePoint(CPoint &point)
 	point.x = GetResolutionProfileLong("QuickPasteX", 300);
 	point.y = GetResolutionProfileLong("QuickPasteY", 300);
 
-	if(point.x <= 0 && point.y <= 0)
+	/*if(point.x <= 0 && point.y <= 0)
 	{
 		point.x = 300;
 		point.y = 300;
-	}
+	}*/
 }
 
 BOOL CGetSetOptions::SetEditWndSize(CSize size)