File tree Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Expand file tree Collapse file tree 2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,12 @@ public GridLength RepositorySidebarWidth
30
30
set => SetProperty ( ref _repositorySidebarWidth , value ) ;
31
31
}
32
32
33
+ public GridLength HistoriesAuthorColumnWidth
34
+ {
35
+ get => _historiesAuthorColumnWidth ;
36
+ set => SetProperty ( ref _historiesAuthorColumnWidth , value ) ;
37
+ }
38
+
33
39
public GridLength WorkingCopyLeftWidth
34
40
{
35
41
get => _workingCopyLeftWidth ;
@@ -55,6 +61,7 @@ public GridLength CommitDetailFilesLeftWidth
55
61
}
56
62
57
63
private GridLength _repositorySidebarWidth = new GridLength ( 250 , GridUnitType . Pixel ) ;
64
+ private GridLength _historiesAuthorColumnWidth = new GridLength ( 120 , GridUnitType . Pixel ) ;
58
65
private GridLength _workingCopyLeftWidth = new GridLength ( 300 , GridUnitType . Pixel ) ;
59
66
private GridLength _stashesLeftWidth = new GridLength ( 300 , GridUnitType . Pixel ) ;
60
67
private GridLength _commitDetailChangesLeftWidth = new GridLength ( 256 , GridUnitType . Pixel ) ;
Original file line number Diff line number Diff line change 609
609
<ContentControl .DataTemplates>
610
610
<DataTemplate DataType =" vm:Histories" >
611
611
<v : Histories CurrentBranch =" {Binding Repo.CurrentBranch}"
612
+ AuthorNameColumnWidth =" {Binding Source={x:Static vm:Preference.Instance}, Path=Layout.HistoriesAuthorColumnWidth, Mode=TwoWay}"
612
613
IssueTrackerRules =" {Binding Repo.Settings.IssueTrackerRules}"
613
614
NavigationId =" {Binding NavigationId}" />
614
615
</DataTemplate >
You can’t perform that action at this time.
0 commit comments