Press this key along with mouse movement/scrolling to accelerate/decelerate the speed of the action.
You can set the multiplier in link to setting.
@@ -99,7 +99,7 @@ import {MouseAction, MouseActionParam} from '../../../../config-serializer/confi
`,
styles: [require('./mouse-tab.component.scss')],
- directives: [NgSwitch, NgSwitchWhen, NgSwitchDefault]
+ directives: [NgSwitch, NgSwitchCase, NgSwitchDefault]
})
export class MouseTabComponent implements OnInit, KeyActionSaver {
private mouseActionParam: MouseActionParam;
diff --git a/src/components/popover/widgets/icon.component.ts b/src/components/popover/widgets/icon.component.ts
index bf98447c..ce1f4e66 100644
--- a/src/components/popover/widgets/icon.component.ts
+++ b/src/components/popover/widgets/icon.component.ts
@@ -1,5 +1,5 @@
import { Component, OnInit, Input } from '@angular/core';
-import { NgSwitch, NgSwitchWhen } from '@angular/common';
+import { NgSwitch, NgSwitchCase } from '@angular/common';
@Component({
moduleId: module.id,
@@ -7,16 +7,16 @@ import { NgSwitch, NgSwitchWhen } from '@angular/common';
template:
`
-
-
-
-
-
-
-
+
+
+
+
+
+
+
`,
- directives: [NgSwitch, NgSwitchWhen],
+ directives: [NgSwitch, NgSwitchCase],
styles: [require('./icon.component.scss')]
})
export class IconComponent implements OnInit {