mirror of
https://github.com/morgan9e/dash-to-panel
synced 2026-04-14 00:04:17 +09:00
Fix typo in function name
This commit is contained in:
4
panel.js
4
panel.js
@@ -1139,7 +1139,7 @@ var dtpPanel = Utils.defineClass({
|
||||
let scrollAction = Me.settings.get_string('scroll-panel-action');
|
||||
let direction = Utils.getMouseScrollDirection(event);
|
||||
|
||||
if (!this._checkIfIgnoredSrollSource(event.get_source()) && !this._timeoutsHandler.getId(T6)) {
|
||||
if (!this._checkIfIgnoredScrollSource(event.get_source()) && !this._timeoutsHandler.getId(T6)) {
|
||||
if (direction && scrollAction === 'SWITCH_WORKSPACE') {
|
||||
let args = [global.display];
|
||||
|
||||
@@ -1168,7 +1168,7 @@ var dtpPanel = Utils.defineClass({
|
||||
}
|
||||
},
|
||||
|
||||
_checkIfIgnoredSrollSource: function(source) {
|
||||
_checkIfIgnoredScrollSource: function(source) {
|
||||
let ignoredConstr = ['WorkspaceIndicator'];
|
||||
|
||||
return source._dtpIgnoreScroll || ignoredConstr.indexOf(source.constructor.name) >= 0;
|
||||
|
||||
Reference in New Issue
Block a user