Index: chrome/browser/resources/print_preview/settings/destination_settings.js |
diff --git a/chrome/browser/resources/print_preview/settings/destination_settings.js b/chrome/browser/resources/print_preview/settings/destination_settings.js |
index c901be13f16920f4ac12def7363f72af4ca539a6..bf0f4457f23617155bfd918cae3c0ea82eeb2ca5 100644 |
--- a/chrome/browser/resources/print_preview/settings/destination_settings.js |
+++ b/chrome/browser/resources/print_preview/settings/destination_settings.js |
@@ -140,8 +140,9 @@ cr.define('print_preview', function() { |
} |
setIsVisible( |
- this.getChildElement('.throbber-container'), destination == null); |
- setIsVisible(destinationSettingsBoxEl, destination != null); |
+ this.getChildElement('.throbber-container'), |
+ this.destinationStore_.isAutoSelectDestinationInProgress); |
+ setIsVisible(destinationSettingsBoxEl, !!destination); |
}, |
onSelectedDestinationNameSet_: function() { |