mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-01 13:56:00 +02:00
Documentation scroll fixes
This commit is contained in:
parent
c53c7b4157
commit
fafd6a7550
3 changed files with 78 additions and 53 deletions
|
@ -155,8 +155,16 @@ namespace IDE.ui
|
|||
curDocStr = new String(pragma, Math.Min(splitEnum.MatchPos + 1, pragma.Length));
|
||||
curDocStr.Trim();
|
||||
|
||||
mParamInfo[new String(paramName)] = curDocStr;
|
||||
lineHadContent = true;
|
||||
if (mParamInfo.TryAddAlt(paramName, var keyPtr, var valuePtr))
|
||||
{
|
||||
*keyPtr = new String(paramName);
|
||||
*valuePtr = curDocStr;
|
||||
lineHadContent = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
defer:: delete curDocStr;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (pragmaName == "brief")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue