Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 532009
Collapse All | Expand All

(-)a/bundles/org.eclipse.e4.ui.bindings/META-INF/MANIFEST.MF (-1 / +1 lines)
Lines 1-7 Link Here
1
Manifest-Version: 1.0
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
2
Bundle-ManifestVersion: 2
3
Bundle-SymbolicName: org.eclipse.e4.ui.bindings;singleton:=true
3
Bundle-SymbolicName: org.eclipse.e4.ui.bindings;singleton:=true
4
Bundle-Version: 0.12.100.qualifier
4
Bundle-Version: 0.12.1.v20170823-1632
5
Bundle-Name: %pluginName
5
Bundle-Name: %pluginName
6
Bundle-Vendor: %providerName
6
Bundle-Vendor: %providerName
7
Bundle-Localization: plugin
7
Bundle-Localization: plugin
(-)a/bundles/org.eclipse.e4.ui.bindings/src/org/eclipse/e4/ui/bindings/internal/BindingTableManager.java (+15 lines)
Lines 130-135 Link Here
130
			if (table != null) {
130
			if (table != null) {
131
				currentResult = table.getPerfectMatch(triggerSequence);
131
				currentResult = table.getPerfectMatch(triggerSequence);
132
			}
132
			}
133
			try {
134
				if (currentResult == null) {
135
					String parentId = null;
136
					parentId = c.getParentId();
137
					if (parentId != null) {
138
						table = getTable(parentId);
139
						if (table != null) {
140
							currentResult = table.getPerfectMatch(triggerSequence);
141
						}
142
					}
143
				}
144
			} catch (Exception e) {
145
				// TODO Auto-generated catch block
146
				e.printStackTrace();
147
			}
133
			if (currentResult != null) {
148
			if (currentResult != null) {
134
				if (isMostActiveScheme(currentResult)) {
149
				if (isMostActiveScheme(currentResult)) {
135
					return currentResult;
150
					return currentResult;

Return to bug 532009