Browse Source

fix crash when double clicking audio ins in inspector

Fixes https://todo.sr.ht/~alextee/zrythm-bug/775.
polyline2d
parent
commit
939745b8c9
Signed by: alex
GPG Key ID: 022EAE42313D70F3
  1. 2
      src/gui/widgets/port_connections_popover.c

2
src/gui/widgets/port_connections_popover.c

@ -76,7 +76,7 @@ port_connections_popover_widget_refresh ( @@ -76,7 +76,7 @@ port_connections_popover_widget_refresh (
port_connections_manager_get_sources_or_dests (
PORT_CONNECTIONS_MGR, srcs,
&self->port->id, true);
for (int i = 0; num_srcs; i++)
for (int i = 0; i < num_srcs; i++)
{
PortConnection * conn =
g_ptr_array_index (srcs, i);

Loading…
Cancel
Save