﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
5422	Fail to connect Modelica.Icons.SignalBus components (expandable connectors)	dariomangoni@…	Adeel Asghar	"The GUI for connecting expandable connectors (extending from Modelica.Icons.SignalBus) fails when linking two connectors from different components.


{{{
package BusGUI
  expandable connector busType
    extends Modelica.Icons.SignalBus;
  end busType;

  model testBus
   busOwner busOwner1 annotation(
      Placement(visible = true, transformation(origin = {-60, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
   busOwner busOwner2 annotation(
      Placement(visible = true, transformation(origin = {60, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
  equation

  end testBus;

  model busOwner
   busType bus annotation(
      Placement(visible = true, transformation(origin = {0, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0), iconTransformation(origin = {0, 0}, extent = {{-10, -10}, {10, 10}}, rotation = 0)));
  equation

  end busOwner;
end BusGUI;
}}}

when I try to connect the two `busType` instances the GUI returns

[[Image(https://imgur.com/LygQp7N)]]

and it creates the connector

{{{
connect(bus, bus);
}}}

instead of

{{{
connect(busOwner1.bus, busOwner2.bus);
}}}
"	defect	closed	blocker	1.14.0	OMEdit	v1.14.0-dev-nightly	fixed		
