Skip to content

Commit 39fdd0c

Browse files
authored
Merge pull request #957 from marcnjaramillo/fix-lgtm-download-message
Remove line about selecting a language from the dropdown.
2 parents fbadc15 + 3fb2c71 commit 39fdd0c

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

extensions/ql-vscode/CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## [UNRELEASED]
44

5+
6+
- 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)
7+
58
- Fixed a bug where copying the version information fails when a CodeQL CLI cannot be found. [#958](https://github.com/github/vscode-codeql/pull/958)
69

710
## 1.5.5 - 08 September 2021

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

+1-1
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

+1-1
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)