Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## 1.40.0 (February 27nd, 2025)
## 1.40.0 (February 27th, 2025)
* enhancement - Support for inherited document symbols. See [#2342](https://github.com/redhat-developer/vscode-java/issues/2342).
* enhancement - Introduce approximately 15 new quick fixes. See [JLS#3368](https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/3368), [JLS#3372](https://github.com/eclipse-jdtls/eclipse.jdt.ls/pull/3372).
* enhancement - Introduce quick assist & cleanup converting a pattern-instanceof-if-chain to a switch statement. See [#3951](https://github.com/redhat-developer/vscode-java/pull/3951).
Expand Down
2 changes: 1 addition & 1 deletion src/outline/extendedOutlineQuickPick.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export class ExtendedOutlineQuickPick {
range: s.range
};
quickPickItems.push(item);
if (icon === 'symbol-class') {
if (icon === 'symbol-class' || icon === 'symbol-interface') {
const items: QuickPickItem[] = s.children.map(s => ({
label: `$(${getLThemeIcon(s.kind).id}) ${s.name}`,
// custom quick pick has automatic space between label & description
Expand Down