1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-07-01 13:56:00 +02:00

Property [Inline] changes, large container/string fixes, reload fixes

This commit is contained in:
Brian Fiete 2019-12-09 10:28:56 -08:00
parent c531ade968
commit becd673914
9 changed files with 45 additions and 37 deletions

View file

@ -794,9 +794,9 @@ namespace IDE.ui
}
else if (memberVals0 == ":repeat")
{
int32 startIdx = int32.Parse(scope String(memberVals[1]));
int32 count = int32.Parse(scope String(memberVals[2]));
int32 maxShow = int32.Parse(scope String(memberVals[3]));
int startIdx = Int.Parse(scope String(memberVals[1]));
int count = Int.Parse(scope String(memberVals[2]));
int maxShow = Int.Parse(scope String(memberVals[3]));
String displayStr = new String(memberVals[4]);
String evalStr = new String(memberVals[5]);
@ -814,7 +814,7 @@ namespace IDE.ui
watchSeriesInfo.mEvalTemplate = evalStr;
watchSeriesInfo.mStartIdx = startIdx;
watchSeriesInfo.mCount = count;
watchSeriesInfo.mShowPageSize = maxShow;
watchSeriesInfo.mShowPageSize = (int32)maxShow;
watchSeriesInfo.mShowPages = 1;
var memberWatch = new PendingWatch();