Skip to content

Commit

Permalink
fix(FileView): reduce the unfolding iterations
Browse files Browse the repository at this point in the history
  • Loading branch information
berdal84 committed Jan 10, 2023
1 parent 5d52e71 commit 091cb02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/src/FileView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ FileView::FileView(IAppCtx& _ctx, File& _file)
if ( root_node_view && graph_view )
{
// unfold graph (simulate 1000 updates). Does not work well,
graph_view->update( 100000.0f, 1000);
graph_view->update( 100000.0f, 100);

// make sure views are outside viewable rectangle (to avoid flickering)
std::vector<NodeView*> views;
Expand Down

0 comments on commit 091cb02

Please sign in to comment.