mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-12 02:58:31 -05:00
This reverts commit 5d44b6a6a7.
This commit is contained in:
@@ -85,8 +85,8 @@ export class FileDialogService implements IFileDialogService {
|
||||
}
|
||||
|
||||
private shouldUseSimplified(schema: string): boolean {
|
||||
const setting = this.configurationService.getValue('files.simpleDialog.enable');
|
||||
return (schema !== Schemas.file) || (setting === true);
|
||||
const setting = this.configurationService.getValue('workbench.dialogs.useSimplified');
|
||||
return (schema !== Schemas.file) || ((setting === 'true') || (setting === true));
|
||||
}
|
||||
|
||||
private ensureFileSchema(schema: string): string[] {
|
||||
|
||||
Reference in New Issue
Block a user