Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
nevesnunes committed Feb 13, 2016
1 parent 8522477 commit 9788c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,8 +234,8 @@ function _showUI() {
entry.set_width(width);

entry.connect('key-release-event', (o, e) => {
let control = (e.get_state() & Clutter.ModifierType.CONTROL_MASK) != 0;
let shift = (e.get_state() & Clutter.ModifierType.SHIFT_MASK) != 0;
const control = (e.get_state() & Clutter.ModifierType.CONTROL_MASK) != 0;
const shift = (e.get_state() & Clutter.ModifierType.SHIFT_MASK) != 0;

const symbol = e.get_key_symbol();
let fkeyIndex = getActionKeyTable().indexOf(symbol);
Expand Down

0 comments on commit 9788c4f

Please sign in to comment.