Skip to content

Commit

Permalink
Don't start with hidden window flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbound committed Aug 21, 2023
1 parent 3f28fab commit 219518a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Agent/Services/Windows/AppLauncherWin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ await hubConnection.SendAsync("DisplayMessage",
targetSessionId: targetSessionId,
forceConsoleSession: Shlwapi.IsOS(OsType.OS_ANYSERVER) && targetSessionId == -1,
desktopName: "default",
hiddenWindow: true,
hiddenWindow: false,
out _);
if (!result)
{
Expand Down
2 changes: 1 addition & 1 deletion submodules/Immense.RemoteControl
Submodule Immense.RemoteControl updated 24 files
+4 −1 Immense.RemoteControl.Desktop.Linux/Services/FileTransferServiceLinux.cs
+4 −2 Immense.RemoteControl.Desktop.Shared/Abstractions/IRemoteControlAccessService.cs
+31 −32 Immense.RemoteControl.Desktop.Shared/Services/DesktopHubConnection.cs
+1 −0 Immense.RemoteControl.Desktop.UI/Controls/Dialogs/MessageBox.axaml
+28 −45 Immense.RemoteControl.Desktop.UI/Controls/Dialogs/MessageBox.axaml.cs
+5 −5 Immense.RemoteControl.Desktop.UI/Services/ChatUiService.cs
+22 −0 Immense.RemoteControl.Desktop.UI/Services/DialogProvider.cs
+10 −9 Immense.RemoteControl.Desktop.UI/Services/RemoteControlAccessService.cs
+1 −1 Immense.RemoteControl.Desktop.UI/Services/SessionIndicator.cs
+55 −5 Immense.RemoteControl.Desktop.UI/Services/UiDispatcher.cs
+1 −0 Immense.RemoteControl.Desktop.UI/Startup/IServiceCollectionExtensions.cs
+2 −1 Immense.RemoteControl.Desktop.UI/ViewModels/Fakes/FakeBrandedViewModelBase.cs
+4 −0 Immense.RemoteControl.Desktop.UI/ViewModels/Fakes/FakeSessionIndicatorWindowViewModel.cs
+16 −16 Immense.RemoteControl.Desktop.UI/ViewModels/MainViewViewModel.cs
+20 −2 Immense.RemoteControl.Desktop.UI/ViewModels/SessionIndicatorWindowViewModel.cs
+1 −0 Immense.RemoteControl.Desktop.UI/Views/ChatWindow.axaml
+1 −4 Immense.RemoteControl.Desktop.UI/Views/ChatWindow.axaml.cs
+2 −0 Immense.RemoteControl.Desktop.UI/Views/PromptForAccessWindow.axaml
+3 −9 Immense.RemoteControl.Desktop.UI/Views/SessionIndicatorWindow.axaml.cs
+8 −1 Immense.RemoteControl.Desktop.Windows/Services/FileTransferServiceWin.cs
+18 −3 Immense.RemoteControl.Server/Hubs/ViewerHub.cs
+10 −0 Immense.RemoteControl.Shared/Enums/PromptForAccessResult.cs
+6 −3 Immense.RemoteControl.Shared/Interfaces/IDesktopHubClient.cs
+32 −0 Immense.RemoteControl.Shared/Models/RemoteControlAccessRequest.cs

0 comments on commit 219518a

Please sign in to comment.