You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Renamed setting to be grouped under "Control Bar", and is now disabled by default. Refactored back-end code to follow the existing method ordering. Moved sticky css class to the view element (now called "sticky-controls"), so the class doesn't need to be maintained on multiple elements.
Copy file name to clipboardExpand all lines: package.json
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -335,6 +335,11 @@
335
335
},
336
336
"markdownDescription": "Customise which context menu actions are visible. For example, if you want to hide the rebase action from the branch context menu, a suitable value for this setting is `{ \"branch\": { \"rebase\": false } }`. For more information of how to configure this setting, view the documentation [here](https://github.com/mhutchie/vscode-git-graph/wiki/Extension-Settings#context-menu-actions-visibility)."
337
337
},
338
+
"git-graph.controlBar.sticky": {
339
+
"type": "boolean",
340
+
"default": false,
341
+
"description": "Keep the control bar visible when the Git Graph View is scrolled."
342
+
},
338
343
"git-graph.customBranchGlobPatterns": {
339
344
"type": "array",
340
345
"items": {
@@ -465,11 +470,6 @@
465
470
},
466
471
"description": "An object specifying the default visibility of the Date, Author & Commit columns. Example: {\"Date\": true, \"Author\": true, \"Commit\": true}"
467
472
},
468
-
"git-graph.stickyHeader": {
469
-
"type": "boolean",
470
-
"default": true,
471
-
"description": "Keeps the header visible when the view is scrolled"
0 commit comments