can open the item menu on the right click for variables

This commit is contained in:
Clement
2024-10-05 23:10:29 -03:00
parent 4c3002c20b
commit f280e2c95a

View File

@ -48,7 +48,13 @@ class SidebarEnvironmentCard extends StatelessWidget {
bool isSelected = selectedId == id;
bool inEditMode = editRequestId == id;
String nm = getEnvironmentTitle(name);
return Tooltip(
return GestureDetector(
onSecondaryTapUp: (isGlobal)
? null
: (TapUpDetails details) {
showItemCardMenu(context, details, onMenuSelected);
},
child: Tooltip(
message: nm,
triggerMode: TooltipTriggerMode.manual,
waitDuration: const Duration(seconds: 1),
@ -123,6 +129,7 @@ class SidebarEnvironmentCard extends StatelessWidget {
),
),
),
),
);
}
}