removing '-event' suffix from event names to normalise naming convention

This commit is contained in:
agracio
2025-11-05 18:59:21 +00:00
parent ea688026d0
commit 87668f5606
11 changed files with 53 additions and 63 deletions

View File

@@ -51,7 +51,7 @@ namespace ElectronNET.API
get => _isQuitOnWindowAllClosed;
set
{
BridgeConnector.Socket.Emit("quit-app-window-all-closed-event", value);
BridgeConnector.Socket.Emit("quit-app-window-all-closed", value);
_isQuitOnWindowAllClosed = value;
}
}