Aggiunta tooltip su gerarchia

This commit is contained in:
Samuele Locatelli
2025-09-04 15:41:05 +02:00
parent 57129559af
commit 14b822be6e
3 changed files with 11 additions and 3 deletions
+3 -3
View File
@@ -98,14 +98,14 @@
@for (int j = 0; j < m_maxCol; j++)
{
@if (j + 1 == ItemTableList[i].Col)
{
{
<td>
<button class="btn btn-sm btn-secondary" style="font-size: 1rem;" @onclick="() => NextStepAndPreview(CompileStep.Frame)">@ItemTableList[i].Desc</button>
<button class="btn btn-sm btn-secondary" style="font-size: 1rem;" @onclick="() => NextStepAndPreview(CompileStep.Frame)" title="Vai a step @(CompileStep.Frame)">@ItemTableList[i].Desc</button>
</td>
}
else
{
<td></td>
<td>&nbsp;</td>
}
}