mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00:00
style<Launcher>: supports two size rules for tabs in titlebar - fixed width or size to content
This commit is contained in:
parent
e3a7abe776
commit
7b70951c93
6 changed files with 40 additions and 10 deletions
|
@ -71,6 +71,11 @@ namespace SourceGit.ViewModels {
|
|||
set => SetProperty(ref _restoreTabs, value);
|
||||
}
|
||||
|
||||
public bool UseFixedTabWidth {
|
||||
get => _useFixedTabWidth;
|
||||
set => SetProperty(ref _useFixedTabWidth, value);
|
||||
}
|
||||
|
||||
public bool UseMacOSStyle {
|
||||
get => _useMacOSStyle;
|
||||
set => SetProperty(ref _useMacOSStyle, value);
|
||||
|
@ -274,6 +279,7 @@ namespace SourceGit.ViewModels {
|
|||
private string _theme = "Default";
|
||||
private int _maxHistoryCommits = 20000;
|
||||
private bool _restoreTabs = false;
|
||||
private bool _useFixedTabWidth = true;
|
||||
private bool _useMacOSStyle = OperatingSystem.IsMacOS();
|
||||
private bool _useTwoColumnsLayoutInHistories = false;
|
||||
private bool _useCombinedTextDiff = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue