Fix formatting

This commit is contained in:
Romain Vigier
2020-06-15 09:54:34 +02:00
parent b7917d47b0
commit 6ee2b44d88
3 changed files with 18 additions and 18 deletions
+7 -7
View File
@@ -29,7 +29,7 @@ const { log_debug } = Me.imports.utils;
const { key_binding_auto_repeat, get_actor } = Me.imports.compat;
/**
* The On-demand Timer allows the user to manually switch between the day and
* The On-demand Timer allows the user to manually switch between the day and
* night variants with a button in the top bar and a keybinding.
*
* The user can change the key combination in the extension's preferences.
@@ -62,13 +62,13 @@ var TimerOndemand = class {
_add_keybinding() {
log_debug('Adding On-demand Timer keybinding...');
// add our own keybinging handler
// add our own keydinging handler
main.wm.addKeybinding(
'nightthemeswitcher-ondemand-keybinding',
e.settingsManager._extensionsSettings,
key_binding_auto_repeat(),
Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW,
this._toggle_time.bind(this)
'nightthemeswitcher-ondemand-keybinding',
e.settingsManager._extensionsSettings,
key_binding_auto_repeat(),
Shell.ActionMode.NORMAL | Shell.ActionMode.OVERVIEW,
this._toggle_time.bind(this)
);
log_debug('Added On-demand Timer keybinding.');
}