Bug 560300 - Some Unicode characters in file content can't be find by
Find Actions(ctrl+3)

Change-Id: I90df3106751f9734930dbace2162d683499b4e38
Signed-off-by: Kalyan Prasad Tatavarthi <kalyan_prasad@in.ibm.com>
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java
index a11b566..d9b7961 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/QuickAccessContents.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2005, 2016 IBM Corporation and others.
+ * Copyright (c) 2005, 2020 IBM Corporation and others.
  *
  * This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License 2.0
@@ -675,7 +675,7 @@
 			}
 		});
 		filterText.addModifyListener(e -> {
-			String text = ((Text) e.widget).getText().toLowerCase();
+			String text = ((Text) e.widget).getText();
 			updateProposals(text);
 		});
 	}