Fix and normalize whitespace

This commit is contained in:
softworkz
2025-11-09 03:50:24 +01:00
parent c1e7b84ec6
commit 84b3c59353
50 changed files with 429 additions and 231 deletions

View File

@@ -5,6 +5,7 @@ using Newtonsoft.Json.Serialization;
using System;
using System.Threading.Tasks;
using ElectronNET.Common;
// ReSharper disable InconsistentNaming
namespace ElectronNET.API;
@@ -187,7 +188,7 @@ public class WebContents
taskCompletionSource.SetResult((bool)success);
});
if(options == null)
if (options == null)
{
BridgeConnector.Socket.Emit("webContents-print", Id, "");
}
@@ -218,7 +219,7 @@ public class WebContents
taskCompletionSource.SetResult((bool)success);
});
if(options == null)
if (options == null)
{
BridgeConnector.Socket.Emit("webContents-printToPDF", Id, "", path);
}