mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-21 12:15:00 +00:00
code_review: PR #187
* replace icon with common whitespace icon in other editors * button tooltip translations * rename `_showHiddenSymbols` to `_showHiddenSymbolsInDiffView` to make its usage clear * change the order of this button
This commit is contained in:
parent
4e44d6a7b1
commit
fec2b402e0
8 changed files with 35 additions and 30 deletions
|
@ -182,6 +182,12 @@ namespace SourceGit.ViewModels
|
|||
set => SetProperty(ref _enableDiffViewWordWrap, value);
|
||||
}
|
||||
|
||||
public bool ShowHiddenSymbolsInDiffView
|
||||
{
|
||||
get => _showHiddenSymbolsInDiffView;
|
||||
set => SetProperty(ref _showHiddenSymbolsInDiffView, value);
|
||||
}
|
||||
|
||||
public Models.ChangeViewMode UnstagedChangeViewMode
|
||||
{
|
||||
get => _unstagedChangeViewMode;
|
||||
|
@ -320,12 +326,6 @@ namespace SourceGit.ViewModels
|
|||
set;
|
||||
} = 0;
|
||||
|
||||
public bool ShowHiddenSymbols
|
||||
{
|
||||
get => _showHiddenSymbols;
|
||||
set => SetProperty(ref _showHiddenSymbols, value);
|
||||
}
|
||||
|
||||
[JsonIgnore]
|
||||
public bool ShouldCheck4UpdateOnStartup
|
||||
{
|
||||
|
@ -541,7 +541,7 @@ namespace SourceGit.ViewModels
|
|||
private bool _useSideBySideDiff = false;
|
||||
private bool _useSyntaxHighlighting = false;
|
||||
private bool _enableDiffViewWordWrap = false;
|
||||
private bool _showHiddenSymbols = false;
|
||||
private bool _showHiddenSymbolsInDiffView = false;
|
||||
|
||||
private Models.ChangeViewMode _unstagedChangeViewMode = Models.ChangeViewMode.List;
|
||||
private Models.ChangeViewMode _stagedChangeViewMode = Models.ChangeViewMode.List;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue