diff --git a/WebWindowComplex/Compo/CardSashGroup.razor.cs b/WebWindowComplex/Compo/CardSashGroup.razor.cs
index ef07d75..4b0646a 100644
--- a/WebWindowComplex/Compo/CardSashGroup.razor.cs
+++ b/WebWindowComplex/Compo/CardSashGroup.razor.cs
@@ -213,7 +213,8 @@ namespace WebWindowComplex.Compo
}
var args = new DataUpdateSash
{
- currSash = CurrSashGroup
+ currSash = CurrSashGroup,
+ noSvg = true
};
await EC_UpdateSashGroup.InvokeAsync(args);
}
@@ -358,6 +359,7 @@ namespace WebWindowComplex.Compo
{
public Sash currSash { get; set; } = null!;
public bool svgNoHw { get; set; } = false;
+ public bool noSvg { get; set; } = false;
}
public class DataUpdateRes
diff --git a/WebWindowComplex/Compo/CardSplit.razor.cs b/WebWindowComplex/Compo/CardSplit.razor.cs
index 0ccbd3f..8df3b87 100644
--- a/WebWindowComplex/Compo/CardSplit.razor.cs
+++ b/WebWindowComplex/Compo/CardSplit.razor.cs
@@ -281,7 +281,8 @@ namespace WebWindowComplex.Compo
}
var args = new DataUpdateSplit()
{
- currSplit = CurrSplit
+ currSplit = CurrSplit,
+ noSvg = true
};
await EC_UpdateSplit.InvokeAsync(args);
}
@@ -294,5 +295,6 @@ namespace WebWindowComplex.Compo
{
public Split currSplit { get; set; } = null!;
public bool svgNoHw { get; set; } = false;
+ public bool noSvg { get; set; } = false;
}
}
\ No newline at end of file
diff --git a/WebWindowComplex/TableComp.razor.cs b/WebWindowComplex/TableComp.razor.cs
index d2e5839..2af4fe8 100644
--- a/WebWindowComplex/TableComp.razor.cs
+++ b/WebWindowComplex/TableComp.razor.cs
@@ -1225,16 +1225,20 @@ namespace WebWindowComplex
{
Split newSplit = args.currSplit;
bool forceSvgNoHw = args.svgNoHw;
+ bool noSvg = args.noSvg;
if (newSplit != null)
{
// cerco il record
var currRec = SearchArea(FrameWindow, newSplit.GroupId, newSplit);
// lo aggiorno
currRec = newSplit;
- if(forceSvgNoHw)
- await DoPreviewSvg(true,true);
- else
- await DoPreviewSvg();
+ if (!noSvg)
+ {
+ if (forceSvgNoHw)
+ await DoPreviewSvg(true, true);
+ else
+ await DoPreviewSvg();
+ }
}
}
@@ -1268,6 +1272,7 @@ namespace WebWindowComplex
{
Sash newSash = args.currSash;
bool svgNoHw = args.svgNoHw;
+ bool noSvg = args.noSvg;
if (svgNoHw)
{
Sash item = (Sash)SearchArea(FrameWindow, newSash.GroupId, newSash);
@@ -1283,7 +1288,8 @@ namespace WebWindowComplex
if (newSash != null && item != null)
{
item = newSash;
- await DoPreviewSvg();
+ if(!noSvg)
+ await DoPreviewSvg();
}
}
}
diff --git a/WebWindowComplex/WebWindowComplex.csproj b/WebWindowComplex/WebWindowComplex.csproj
index 2bcca47..5433b75 100644
--- a/WebWindowComplex/WebWindowComplex.csproj
+++ b/WebWindowComplex/WebWindowComplex.csproj
@@ -6,7 +6,7 @@
net8.0
enable
enable
- 2.7.12.2317
+ 2.7.12.2912
Annamaria Sassi
Egalware
Componente gestione Configurazioni avanzate Window per LUX
@@ -440,6 +440,16 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/WebWindowConfigurator/WebWindowConfigurator.csproj b/WebWindowConfigurator/WebWindowConfigurator.csproj
index f25bc18..4aacc97 100644
--- a/WebWindowConfigurator/WebWindowConfigurator.csproj
+++ b/WebWindowConfigurator/WebWindowConfigurator.csproj
@@ -6,7 +6,7 @@
net8.0
enable
enable
- 2.7.12.2317
+ 2.7.12.2912
Annamaria Sassi
Egalware
Componente gestione JWD per LUX
@@ -567,6 +567,16 @@
+
+
+
+
+
+
+
+
+
+