Skip to content

Commit b40f648

Browse files
Remove line about selecting a language from the dropdown.
1 parent df18ff3 commit b40f648

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [UNRELEASED]
44

5+
- Remove line about selecting a language from the dropdown when downloading database from LGTM. This makes the download progress visible when the popup is not expanded. [#894](https://github.com/github/vscode-codeql/issues/894)
6+
57
## 1.5.5 - 08 September 2021
68

79
- Fix bug where a query is sometimes run before the file is saved. [#947](https://github.com/github/vscode-codeql/pull/947)

extensions/ql-vscode/src/databases-ui.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ export class DatabaseUI extends DisposableObject {
295295
'codeQLDatabases.chooseDatabaseLgtm',
296296
this.handleChooseDatabaseLgtm,
297297
{
298-
title: 'Adding database from LGTM. Choose a language from the dropdown, if requested.',
298+
title: 'Adding database from LGTM',
299299
})
300300
);
301301
this.push(

extensions/ql-vscode/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -771,7 +771,7 @@ async function activateWithInstalledDistribution(
771771
) =>
772772
databaseUI.handleChooseDatabaseLgtm(progress, token),
773773
{
774-
title: 'Adding database from LGTM. Choose a language from the dropdown, if requested.',
774+
title: 'Adding database from LGTM',
775775
})
776776
);
777777
ctx.subscriptions.push(

0 commit comments

Comments
 (0)