Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Caks2016-08-25 13:59:15 +0000
committerChristoph Caks2016-08-25 13:59:15 +0000
commit0d3b5dbce156dbad17687e532ab1a6b48ddcac4e (patch)
tree6d7c4dc48d56588f89d5d189a6874ff69a5be9e4
parent341920104e7ec0fcbcb3661db4c9ab28f3df08d7 (diff)
downloadorg.eclipse.efxclipse-0d3b5dbce156dbad17687e532ab1a6b48ddcac4e.tar.gz
org.eclipse.efxclipse-0d3b5dbce156dbad17687e532ab1a6b48ddcac4e.tar.xz
org.eclipse.efxclipse-0d3b5dbce156dbad17687e532ab1a6b48ddcac4e.zip
refs #9: fixes issue with Ctrl+Plus on windows
-rw-r--r--bundles/code/org.eclipse.fx.text.ui/src/org/eclipse/fx/text/ui/source/SourceViewer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/code/org.eclipse.fx.text.ui/src/org/eclipse/fx/text/ui/source/SourceViewer.java b/bundles/code/org.eclipse.fx.text.ui/src/org/eclipse/fx/text/ui/source/SourceViewer.java
index b3dd88de5..31d57516a 100644
--- a/bundles/code/org.eclipse.fx.text.ui/src/org/eclipse/fx/text/ui/source/SourceViewer.java
+++ b/bundles/code/org.eclipse.fx.text.ui/src/org/eclipse/fx/text/ui/source/SourceViewer.java
@@ -60,8 +60,8 @@ public class SourceViewer extends TextViewer implements ISourceViewer, ISourceVi
private void initSourceViewerActionMapping() {
this.actionMapping.map("Ctrl+Space", SourceTextEditActions.PROPOSAL_REQUEST); //$NON-NLS-1$
- this.actionMapping.map("Ctrl+'+'", SourceTextEditActions.FONT_ZOOM_IN);
- this.actionMapping.map("Ctrl+'-'", SourceTextEditActions.FONT_ZOOM_OUT);
+ this.actionMapping.map("Ctrl+Plus", SourceTextEditActions.FONT_ZOOM_IN);
+ this.actionMapping.map("Ctrl+Minus", SourceTextEditActions.FONT_ZOOM_OUT);
this.actionMapping.map("Ctrl+0", SourceTextEditActions.FONT_ZOOM_RESET);
subscribeAction((action, context) -> {

Back to the top