[gnome-sound-recorder] mainWindow: Supress eslint error for play, it should be fixed once we switch to an event driven logi



commit b8157495dd698fb3a032600520c4c96220c13a1a
Author: Gaurav Agrawal <agrawalgaurav1999 gmail com>
Date:   Wed Mar 4 15:19:16 2020 +0530

    mainWindow: Supress eslint error for play, it should be fixed once we switch to an event driven logic

 src/mainWindow.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/mainWindow.js b/src/mainWindow.js
index 675a19f..bbb1af3 100644
--- a/src/mainWindow.js
+++ b/src/mainWindow.js
@@ -381,7 +381,7 @@ const MainView = GObject.registerClass(class MainView extends Gtk.Stack {
                 this._playListButton.set_tooltip_text(_('Play'));
                 this.rowGrid.attach(this._playListButton, 0, 0, 2, 2);
                 this._playListButton.show();
-                this._playListButton.connect('clicked', button => {
+                this._playListButton.connect('clicked', button => { // eslint-disable-line
                     let row = button.get_parent().get_parent();
                     this.listBox.select_row(row);
                     play.passSelected(row);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]