-
Notifications
You must be signed in to change notification settings - Fork 370
Closed
Labels
P2important to work on, but not at the top of the work list.important to work on, but not at the top of the work list.analyticsRelated to DevTools analyticsRelated to DevTools analyticscross-screenIssues that affect multiple DevTools screens, i.e. shared functionality and widgetsIssues that affect multiple DevTools screens, i.e. shared functionality and widgets
Description
When the VM service connection changes, DevTools calls setupUserApplicationDimensions.
However, because _userApplicationDimensionsComputed was set to true after the first VM service connection, the dimensions are not updated for the new connection.
devtools/packages/devtools_app/lib/src/shared/analytics/_analytics_web.dart
Lines 849 to 857 in 92913e2
| void setupUserApplicationDimensions() { | |
| if (serviceConnection.serviceManager.connectedApp != null && | |
| !_userApplicationDimensionsComputed && | |
| !_computingUserApplicationDimensions) { | |
| _computingUserApplicationDimensions = true; | |
| _computeUserApplicationCustomGTagData(); | |
| _userApplicationDimensionsComputed = true; | |
| } | |
| } |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
P2important to work on, but not at the top of the work list.important to work on, but not at the top of the work list.analyticsRelated to DevTools analyticsRelated to DevTools analyticscross-screenIssues that affect multiple DevTools screens, i.e. shared functionality and widgetsIssues that affect multiple DevTools screens, i.e. shared functionality and widgets