DevExpress Designer Nullpointer Exception wenn andere TimeScales verwendet werden

This commit is contained in:
2024-08-09 13:07:44 +02:00
parent 0fd7946841
commit 482d74ad54
4 changed files with 236 additions and 161 deletions

View File

@@ -264,9 +264,9 @@ UserRightType.Signature_ProvideMonthlySignatureByProxy,
{
foreach (UserRightType item in Enum.GetValues(typeof(UserRightType)))
{
var has_base_version = UserRightHelper.GetRightVersion(item) == UserRightHelper.BASE_VERSION;
var has_special_version = UserRightHelper.GetRightVersion(item) != UserRightHelper.BASE_VERSION;
if (!has_base_version)
if (has_special_version)
continue;
var is_base_version = UserRightTypesVersion1dot0.Contains(item);