Skip to content

Commit

Permalink
disable log
Browse files Browse the repository at this point in the history
  • Loading branch information
freder committed Oct 2, 2021
1 parent 8dc2004 commit 844e5e2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nemo-preview/src/js/ui/mainWindow.js
Original file line number Diff line number Diff line change
Expand Up @@ -201,19 +201,19 @@ MainWindow.prototype = {
this.toggleFullScreen();

if (key == 65364 /* Gdk.KEY_Down */) {
log('down ' + Gtk.DirectionType.DOWN);
// log('down ' + Gtk.DirectionType.DOWN);
this._application.emitSelectionEvent(Gtk.DirectionType.DOWN);
}
else if (key == 65362) {
log('up ' + Gtk.DirectionType.UP);
// log('up ' + Gtk.DirectionType.UP);
this._application.emitSelectionEvent(Gtk.DirectionType.UP);
}
else if (key == 65361) {
log('left ' + Gtk.DirectionType.LEFT);
// log('left ' + Gtk.DirectionType.LEFT);
this._application.emitSelectionEvent(Gtk.DirectionType.LEFT);
}
else if (key == 65363) {
log('right ' + Gtk.DirectionType.RIGHT);
// log('right ' + Gtk.DirectionType.RIGHT);
this._application.emitSelectionEvent(Gtk.DirectionType.RIGHT);
}
return false;
Expand Down

0 comments on commit 844e5e2

Please sign in to comment.