You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to configure the folder "on application focus" setting for the game helldivers 2 but it does not appears in the application list.
Running the following code (similar to what is used in the app repo) in my local machine works and the game window is detected normaly:
using System.Diagnostics;
using static System.String;
var processCollection = Process.GetProcesses();
foreach (var p in processCollection)
{
if (!IsNullOrEmpty(p.MainWindowTitle))
{
Console.Write(p.ProcessName + ";" + p.MainWindowTitle + "\n");
}
}
output:
...
helldivers2;HELLDIVERS™ 2
...
The text was updated successfully, but these errors were encountered:
After testing a bit more, I found that the process with the correct MainWindowTitle is appearing named as "Idle" (id=0) in MacroDeck.
The "helldivers2.exe" process don't have the MainWindowTitle value in MacroDeck.
Trying to configure the folder "on application focus" setting for the game helldivers 2 but it does not appears in the application list.
Running the following code (similar to what is used in the app repo) in my local machine works and the game window is detected normaly:
output:
The text was updated successfully, but these errors were encountered: