|
|
@ -358,7 +358,8 @@ export class GraphWebview extends WebviewBase { |
|
|
|
configuration.changed(e, 'graph.avatars') || |
|
|
|
configuration.changed(e, 'graph.dateFormat') || |
|
|
|
configuration.changed(e, 'graph.dateStyle') || |
|
|
|
configuration.changed(e, 'graph.highlightRowsOnRefHover') |
|
|
|
configuration.changed(e, 'graph.highlightRowsOnRefHover') || |
|
|
|
configuration.changed(e, 'graph.showGhostRefsOnRowHover') |
|
|
|
) { |
|
|
|
void this.notifyDidChangeConfiguration(); |
|
|
|
} |
|
|
@ -747,6 +748,7 @@ export class GraphWebview extends WebviewBase { |
|
|
|
dateStyle: configuration.get('graph.dateStyle') ?? configuration.get('defaultDateStyle'), |
|
|
|
enableMultiSelection: false, |
|
|
|
highlightRowsOnRefHover: configuration.get('graph.highlightRowsOnRefHover'), |
|
|
|
showGhostRefsOnRowHover: configuration.get('graph.showGhostRefsOnRowHover'), |
|
|
|
shaLength: configuration.get('advanced.abbreviatedShaLength'), |
|
|
|
}; |
|
|
|
return config; |
|
|
|