Skip to content
Snippets Groups Projects
Commit 06295e1c authored by vjrj's avatar vjrj
Browse files

Force refresh all nodes same like long press

parent 37bf72bb
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,8 @@ class DebugNodeHeader extends StatelessWidget { ...@@ -90,7 +90,8 @@ class DebugNodeHeader extends StatelessWidget {
onLongPress: () => _fetchNodes(context, true), onLongPress: () => _fetchNodes(context, true),
child: IconButton( child: IconButton(
icon: const Icon(Icons.refresh), icon: const Icon(Icons.refresh),
onPressed: () => _fetchNodes(context, false)), // Force in all cases
onPressed: () => _fetchNodes(context, true)),
) )
], ],
)); ));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment