diff --git a/tools/devtools/src/devtools_app/devtools_window/profiler_tab/event/event.xml b/tools/devtools/src/devtools_app/devtools_window/profiler_tab/event/event.xml index 3ad8f2ea..4c152e3a 100644 --- a/tools/devtools/src/devtools_app/devtools_window/profiler_tab/event/event.xml +++ b/tools/devtools/src/devtools_app/devtools_window/profiler_tab/event/event.xml @@ -1,7 +1,7 @@ -
+
= 0; i--) { @@ -833,6 +834,7 @@ function loadEvents(events) { // Make sure we add the event while keeping the whole list ordered by id addEventSorted(event); } + store.events[store.events.length - 1].isLast = true; } // Deselect component and remove highlight on all children diff --git a/tools/devtools/src/main.css b/tools/devtools/src/main.css index 83b0676b..bb0c0748 100644 --- a/tools/devtools/src/main.css +++ b/tools/devtools/src/main.css @@ -133,6 +133,10 @@ font-size: 11px; } +.event-last { + border-bottom: 3px solid rgb(225, 154, 0); +} + .getter-content:hover { text-decoration: underline; }