We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 63a694f + 694bac5 commit f3ab46eCopy full SHA for f3ab46e
2 files changed
.gitignore
@@ -348,8 +348,11 @@ MigrationBackup/
348
349
# Ionide (cross platform F# VS Code tools) working folder
350
.ionide/
351
-
352
-/.vl
353
-/lib/net472/
354
-/lib/
355
-*/lib/
+
+/.vl
+/lib/net472/
+/lib/
+*/lib/
356
357
+# Visual Studio launch settings (user-specific)
358
+**/Properties/launchSettings.json
VL.CEF/src/WebBrowser.Handlers.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using Xilium.CefGlue;
3
using System.Diagnostics;
4
using Stride.Core.Mathematics;
@@ -383,7 +383,7 @@ static Spread<object> ToSpread(CefListValue list)
383
{
384
var x = new SpreadBuilder<object>(list.Count);
385
for (int i = 0; i < list.Count; i++)
386
- x.Add(ToValue(list.GetValue(i)));
+ x.Add(ToObject(list.GetValue(i)));
387
return x.ToSpread();
388
}
389
0 commit comments