- Gestito salvataggio e chiusura componente con salvataggio jwd
- Correzioni valori nulli - Aggiunta funzione per calcolare altezza sashGroup
This commit is contained in:
@@ -106,7 +106,10 @@ namespace WebWindowComplex.Compo
|
||||
{
|
||||
if (CurrFrameWindow.SelThresholdFromType != value)
|
||||
{
|
||||
string valueName = CurrFrameWindow.ThresholdList.Where(x => x.Type.Equals(value)).First().Name;
|
||||
Threshold? threshold = CurrFrameWindow.ThresholdList.Where(x => x.Type.Equals(value)).FirstOrDefault();
|
||||
string valueName = "";
|
||||
if (threshold != null)
|
||||
valueName = threshold.Name;
|
||||
if (SashList.Count > 0 || (SashList.Count == 0 && !valueName.Equals("Threshold")))
|
||||
{
|
||||
CurrFrameWindow.SelThresholdFromType = value;
|
||||
|
||||
Reference in New Issue
Block a user