@@ -81,9 +81,10 @@ class Config {
8181 get contextMenuActionsVisibility ( ) : ContextMenuActionsVisibility {
8282 const userConfig = this . config . get ( 'contextMenuActionsVisibility' , { } ) ;
8383 const config : ContextMenuActionsVisibility = {
84- branch : { checkout : true , rename : true , delete : true , merge : true , rebase : true , push : true , createPullRequest : true , createArchive : true , selectInBranchesDropdown : true , unselectInBranchesDropdown : true , copyName : true } ,
84+ branch : { checkout : true , rename : true , delete : true , merge : true , rebase : true , push : true , viewIssue : true , createPullRequest : true , createArchive : true , selectInBranchesDropdown : true , unselectInBranchesDropdown : true , copyName : true } ,
8585 commit : { addTag : true , createBranch : true , checkout : true , cherrypick : true , revert : true , drop : true , merge : true , rebase : true , reset : true , copyHash : true , copySubject : true } ,
86- remoteBranch : { checkout : true , delete : true , fetch : true , merge : true , pull : true , createPullRequest : true , createArchive : true , selectInBranchesDropdown : true , unselectInBranchesDropdown : true , copyName : true } ,
86+ commitDetailsViewFile : { viewDiff : true , viewFileAtThisRevision : true , viewDiffWithWorkingFile : true , openFile : true , markAsReviewed : true , markAsNotReviewed : true , resetFileToThisRevision : true , copyAbsoluteFilePath : true , copyRelativeFilePath : true } ,
87+ remoteBranch : { checkout : true , delete : true , fetch : true , merge : true , pull : true , viewIssue : true , createPullRequest : true , createArchive : true , selectInBranchesDropdown : true , unselectInBranchesDropdown : true , copyName : true } ,
8788 stash : { apply : true , createBranch : true , pop : true , drop : true , copyName : true , copyHash : true } ,
8889 tag : { viewDetails : true , delete : true , push : true , createArchive : true , copyName : true } ,
8990 uncommittedChanges : { stash : true , reset : true , clean : true , openSourceControlView : true }
@@ -545,6 +546,13 @@ class Config {
545546 return ! ! this . config . get ( 'showStatusBarItem' , true ) ;
546547 }
547548
549+ /**
550+ * Get the value of the `git-graph.stickyHeader` Extension Setting.
551+ */
552+ get stickyHeader ( ) {
553+ return ! ! this . config . get ( 'stickyHeader' , true ) ;
554+ }
555+
548556 /**
549557 * Get the value of the `git-graph.tabIconColourTheme` Extension Setting.
550558 */
0 commit comments