(actor, event)
| 1084 | } |
| 1085 | |
| 1086 | _onScrollEvent(actor, event) { |
| 1087 | if (this._swipeTracker.canHandleScrollEvent(event)) |
| 1088 | return Clutter.EVENT_PROPAGATE; |
| 1089 | |
| 1090 | if (!this.mapped) |
| 1091 | return Clutter.EVENT_PROPAGATE; |
| 1092 | |
| 1093 | if (this._workspacesOnlyOnPrimary && |
| 1094 | this._getMonitorIndexForEvent(event) !== this._primaryIndex) |
| 1095 | return Clutter.EVENT_PROPAGATE; |
| 1096 | |
| 1097 | return Main.wm.handleWorkspaceScroll(event); |
| 1098 | } |
| 1099 | |
| 1100 | _onKeyPressEvent(actor, event) { |
| 1101 | const {ControlsState} = OverviewControls; |
nothing calls this directly
no test coverage detected