Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2019-08-14 07:21:59 +0000
committerMichael Keppler2019-08-15 05:36:05 +0000
commitce1aa6faf4b4057c5a9f303448c84a3b90d8721f (patch)
treec179e5f6d353a6c06b5564bf210da340625e8ff4 /org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties
parent6b953d64a09f18571ccfe6b8e528eafd736b0f55 (diff)
downloadeclipse.platform.text-ce1aa6faf4b4057c5a9f303448c84a3b90d8721f.tar.gz
eclipse.platform.text-ce1aa6faf4b4057c5a9f303448c84a3b90d8721f.tar.xz
eclipse.platform.text-ce1aa6faf4b4057c5a9f303448c84a3b90d8721f.zip
Fix layout of quicksearch preference page
The multi-line preferences for ignored names/prefixes/extensions do not resize and therefore have a different size than the maxLineLength preference at the top of the page. Remove the character width limitation, and set a layout data width instead. This makes the field editors resize as expected, such that all field editors have the same size. Change-Id: I8e5c7b186e7058e14949ee528f336011953a786d Signed-off-by: Michael Keppler <michael.keppler@gmx.de>
Diffstat (limited to 'org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties')
-rw-r--r--org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties17
1 files changed, 8 insertions, 9 deletions
diff --git a/org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties b/org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties
index 1108b0b2af8..e5c2b1c1226 100644
--- a/org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties
+++ b/org.eclipse.text.quicksearch/src/org/eclipse/text/quicksearch/internal/ui/messages.properties
@@ -1,12 +1,11 @@
-QuickSearchPreferencesPage_0=Extensions
-QuickSearchPreferencesPage_1=Prefixes
-QuickSearchPreferencesPage_2=Names
-QuickSearchPreferencesPage_3=Enter a list of file extensions. Elements in the list can be separated by commas or newlines. Any file or folder ending with one of the extensions will be ignored.
-QuickSearchPreferencesPage_4=Enter a list of file prefixes. Elements in the list can be separated by commas or newlines. Any file or folder who's name begins with one of the prefixes will be ignored.
-QuickSearchPreferencesPage_5=Enter a list of file names. Elements in the list can be separated by commas or newlines. Any file or folder who's name equals one of the listed names will be ignored.
-QuickSearchPreferencesPage_6=Max Line Length
-QuickSearchPreferencesPage_7=When QuickSearch encounters a line of text longer than 'Max Line Length' it stops searching the current file. This is meant to avoid searching in machine generated text files, such as minified JavaScript.
-QuickSearchPreferencesPage_8=Ignore
+QuickSearchPreferencesPage_Tooltip_Extensions=Enter a list of file extensions. Elements in the list can be separated by commas or newlines. Any file or folder ending with one of the extensions will be ignored.
+QuickSearchPreferencesPage_Tooltip_Prefixes=Enter a list of file prefixes. Elements in the list can be separated by commas or newlines. Any file or folder who's name begins with one of the prefixes will be ignored.
+QuickSearchPreferencesPage_Tooltip_Names=Enter a list of file names. Elements in the list can be separated by commas or newlines. Any file or folder who's name equals one of the listed names will be ignored.
+QuickSearchPreferencesPage_MaxLineLength=Max Line Length
+QuickSearchPreferencesPage_Tooltip_MaxLineLength=When QuickSearch encounters a line of text longer than 'Max Line Length' it stops searching the current file. This is meant to avoid searching in machine generated text files, such as minified JavaScript.
+QuickSearchPreferencesPage_Ignored_Extensions=Ignored Extensions
+QuickSearchPreferencesPage_Ignored_Prefixes=Ignored Prefixes
+QuickSearchPreferencesPage_Ignored_Names=Ignored Names
QuickSearchDialog_Open=&Open
QuickSearchDialog_Refresh=&Refresh
QuickSearchDialog_In=in:

Back to the top