Skip to content

Commit 844e5e2

Browse files
committed
disable log
1 parent 8dc2004 commit 844e5e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

nemo-preview/src/js/ui/mainWindow.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -201,19 +201,19 @@ MainWindow.prototype = {
201201
this.toggleFullScreen();
202202

203203
if (key == 65364 /* Gdk.KEY_Down */) {
204-
log('down ' + Gtk.DirectionType.DOWN);
204+
// log('down ' + Gtk.DirectionType.DOWN);
205205
this._application.emitSelectionEvent(Gtk.DirectionType.DOWN);
206206
}
207207
else if (key == 65362) {
208-
log('up ' + Gtk.DirectionType.UP);
208+
// log('up ' + Gtk.DirectionType.UP);
209209
this._application.emitSelectionEvent(Gtk.DirectionType.UP);
210210
}
211211
else if (key == 65361) {
212-
log('left ' + Gtk.DirectionType.LEFT);
212+
// log('left ' + Gtk.DirectionType.LEFT);
213213
this._application.emitSelectionEvent(Gtk.DirectionType.LEFT);
214214
}
215215
else if (key == 65363) {
216-
log('right ' + Gtk.DirectionType.RIGHT);
216+
// log('right ' + Gtk.DirectionType.RIGHT);
217217
this._application.emitSelectionEvent(Gtk.DirectionType.RIGHT);
218218
}
219219
return false;

0 commit comments

Comments
 (0)