Title: [237831] trunk/Source/WebInspectorUI
Revision
237831
Author
[email protected]
Date
2018-11-05 14:03:47 -0800 (Mon, 05 Nov 2018)

Log Message

Web Inspector: Audit: turn off Start button when all tests are removed
https://bugs.webkit.org/show_bug.cgi?id=191235

Reviewed by Matt Baker.

* UserInterface/Views/AuditNavigationSidebarPanel.js:
(WI.AuditNavigationSidebarPanel.prototype._handleAuditTestRemoved):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (237830 => 237831)


--- trunk/Source/WebInspectorUI/ChangeLog	2018-11-05 21:38:05 UTC (rev 237830)
+++ trunk/Source/WebInspectorUI/ChangeLog	2018-11-05 22:03:47 UTC (rev 237831)
@@ -1,3 +1,13 @@
+2018-11-05  Devin Rousso  <[email protected]>
+
+        Web Inspector: Audit: turn off Start button when all tests are removed
+        https://bugs.webkit.org/show_bug.cgi?id=191235
+
+        Reviewed by Matt Baker.
+
+        * UserInterface/Views/AuditNavigationSidebarPanel.js:
+        (WI.AuditNavigationSidebarPanel.prototype._handleAuditTestRemoved):
+
 2018-11-05  Matt Baker  <[email protected]>
 
         Web Inspector: Table selection should not require that rows be in the cache

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/AuditNavigationSidebarPanel.js (237830 => 237831)


--- trunk/Source/WebInspectorUI/UserInterface/Views/AuditNavigationSidebarPanel.js	2018-11-05 21:38:05 UTC (rev 237830)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/AuditNavigationSidebarPanel.js	2018-11-05 22:03:47 UTC (rev 237831)
@@ -153,6 +153,8 @@
         let {test} = event.data;
         let treeElement = this.treeElementForRepresentedObject(test);
         this.contentTreeOutline.removeChild(treeElement);
+
+        this._updateStartStopButtonNavigationItemState();
     }
 
     _handleAuditTestScheduled(event)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to