1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-22 09:38:01 +02:00

Wasm calling convention fixes. IDEHelper/Tests runs on wasm now.

This commit is contained in:
Brian Fiete 2024-10-25 11:20:01 -04:00
parent c0ebcc8fda
commit 31746c1f19
12 changed files with 99 additions and 13 deletions

View file

@ -1,3 +1,5 @@
#pragma warning disable 168
using System;
using System.Collections;
using System.Diagnostics;
@ -1601,6 +1603,14 @@ namespace IDE.ui
floatVal.ToString(valStr);
valueItem.Label = valStr;
}
else if (curVariantType == typeof(Workspace.ConfigSelection))
{
var platformItem = (DarkListViewItem)propEntry.mListViewItem.GetSubItem(2);
var configSelection = propEntry.mCurValue.Get<Workspace.ConfigSelection>();
valueItem.Label = configSelection.mConfig;
platformItem.Label = configSelection.mPlatform;
}
else
ThrowUnimplemented();
//valueItem.Label = ToStackString!(propEntry.mCurValue);