We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38e78f0 commit 62b5e9dCopy full SHA for 62b5e9d
flutter-idea/src/io/flutter/run/daemon/DeviceService.java
@@ -154,7 +154,11 @@ private synchronized void refreshDeviceSelection() {
154
deviceSelection.updateAndGet((old) -> {
155
final DeviceDaemon daemon = deviceDaemon.getNow();
156
final List<FlutterDevice> newDevices = daemon == null ? ImmutableList.of() : daemon.getDevices();
157
- return old.withDevices(newDevices);
+ FlutterDevice oldSelection = old.getSelection();
158
+ String selection = oldSelection != null
159
+ ? oldSelection.deviceId()
160
+ : newDevices.isEmpty() ? null : newDevices.getFirst().deviceId();
161
+ return old.withDevices(newDevices).withSelection(selection);
162
});
163
fireChangeEvent();
164
}
0 commit comments