eve-o preview -> eve-o-preview

lutris install script
This commit is contained in:
Izakbar
2025-02-08 21:25:11 +00:00
parent 574d138341
commit 39c6a68d60
10 changed files with 106 additions and 13 deletions

View File

@@ -9,7 +9,7 @@ namespace EveOPreview.Services.Implementation
{
#region Private constants
private const string DEFAULT_PROCESS_NAME = "ExeFile";
private const string CURRENT_PROCESS_NAME = "EVE-O Preview";
private const string CURRENT_PROCESS_NAME = "EVE-O-Preview";
#endregion
#region Private fields

View File

@@ -686,7 +686,7 @@ namespace EveOPreview.Services
return false;
}
// Check whether the currently active window belongs to EVE-O Preview itself
// Check whether the currently active window belongs to EVE-O-Preview itself
private bool IsMainWindowActive(IntPtr windowHandle)
{
return (this._processMonitor.GetMainProcess().Handle == windowHandle);

View File

@@ -105,7 +105,6 @@ namespace EveOPreview.Services.Implementation
{
cmd = "-c \"wmctrl -a \"\"" + windowName + "\"\"\"";
}
System.Diagnostics.Process.Start("/bin/bash", cmd);
}