ensure we set group for both editors (#6016)

This commit is contained in:
Anthony Dresser
2019-06-14 14:00:28 -07:00
committed by GitHub
parent 2ed9a93bae
commit 7a31d66d2c

View File

@@ -294,7 +294,8 @@ export class QueryEditor extends BaseEditor {
* Sets this editor and the 2 sub-editors to visible.
*/
public setEditorVisible(visible: boolean, group: IEditorGroup): void {
this.currentTextEditor.setVisible(visible, group);
this.textFileEditor.setVisible(visible, group);
this.textResourceEditor.setVisible(visible, group);
this.resultsEditor.setVisible(visible, group);
super.setEditorVisible(visible, group);