﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3135	OMEdit moves comments in algorithms	massimo ceraolo	Adeel Asghar	"If I have a line comment in OMEdit inside an algorithm, when saving the comment is moved at the end of algorithm.

If I wrote the following model, for instance:

{{{
model aa
  Real x;
algorithm
  if time > 0.5 then
  //this is a comment
    x := 2;
  else
    x := 1;
  end if;
end aa;

}}}

when saved it becomes:


{{{
model aa
  Real x;
algorithm
  if time > 0.5 then
    x := 2;
  else
    x := 1;
  end if;
  //this is a comment
end aa;

}}}

"	defect	closed	normal	never	OMEdit	trunk	duplicate		
