Bug 1117067 - Destroy toolbox before disconnect. r=ochameau

This commit is contained in:
J. Ryan Stinnett 2015-02-09 14:04:46 -06:00
Родитель 46ad522230
Коммит d52d067d08
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -1232,7 +1232,11 @@ let Cmds = {
},
disconnectRuntime: function() {
return UI.busyUntil(AppManager.disconnectRuntime(), "disconnecting from runtime");
let disconnecting = Task.spawn(function*() {
yield UI.destroyToolbox();
yield AppManager.disconnectRuntime();
});
return UI.busyUntil(disconnecting, "disconnecting from runtime");
},
takeScreenshot: function() {