[TD]add style options for broken view

This commit is contained in:
wandererfan
2024-05-28 20:09:54 -04:00
committed by WandererFan
parent 23e4492a91
commit e2441c7079
11 changed files with 682 additions and 495 deletions

View File

@@ -502,6 +502,11 @@ int Preferences::HiddenLineStyle()
return getPreferenceGroup("Decorations")->GetInt("LineStyleHidden", 1) + 1;
}
int Preferences::BreakLineStyle()
{
return getPreferenceGroup("Decorations")->GetInt("LineStyleBreak", 0) + 1;
}
int Preferences::LineSpacingISO()
{
return getPreferenceGroup("Dimensions")->GetInt("LineSpacingFactorISO", 2);
@@ -578,5 +583,9 @@ bool Preferences::useExactMatchOnDims()
return getPreferenceGroup("Dimensions")->GetBool("UseMatcher", true);
}
int Preferences::BreakType()
{
return getPreferenceGroup("Decorations")->GetInt("BreakType", 2);
}