Skip to content

Commit

Permalink
Merge branch 'main' into features/3873-add-button-to-open-home-view-f…
Browse files Browse the repository at this point in the history
…rom-graph
  • Loading branch information
sergeibbb authored Dec 23, 2024
2 parents 63fdff3 + 6942498 commit f2cd7bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
- Adds go to home view button to the commit graph title section — closes [#3873](https://github.com/gitkraken/vscode-gitlens/issues/3873)
- Adds a _Contributors_ section to comparison results in the views

### Fixed

- Fixes [#3888](https://github.com/gitkraken/vscode-gitlens/issues/#3888) - Graph hover should disappear when right-clicking a row

## [16.1.1] - 2024-12-20

### Added
Expand Down
1 change: 1 addition & 0 deletions src/webviews/apps/plus/graph/GraphWrapper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -899,6 +899,7 @@ export function GraphWrapper({

const handleRowContextMenu = (_event: React.MouseEvent<any>, graphZoneType: GraphZoneType, graphRow: GraphRow) => {
if (graphZoneType === refZone) return;
hover.current?.hide();

// If the row is in the current selection, use the typed selection context, otherwise clear it
const newSelectionContext = selectionContexts?.selectedShas.has(graphRow.sha)
Expand Down

0 comments on commit f2cd7bc

Please sign in to comment.