mirror of
https://github.com/mRemoteNG/mRemoteNG.git
synced 2026-02-17 14:07:46 +08:00
Merge pull request #2133 from david-sway/v1.77.2-dev
Made changes to prevent two settings-scenarios that brick the app.
This commit is contained in:
@@ -48,8 +48,9 @@ namespace mRemoteNG.UI.Tabs
|
||||
set
|
||||
{
|
||||
currentPanel = value;
|
||||
Runtime.MessageCollector.AddMessage(Messages.MessageClass.DebugMsg,
|
||||
"Panel got focused: " + currentPanel.TabText);
|
||||
//Disabled due to interaction with popups that would show this information and cause a softlock
|
||||
//Runtime.MessageCollector.AddMessage(Messages.MessageClass.DebugMsg,
|
||||
// "Panel got focused: " + currentPanel.TabText);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -141,7 +141,7 @@ namespace mRemoteNG.UI.Window
|
||||
new RootNodeExpander()
|
||||
};
|
||||
|
||||
if (Settings.Default.OpenConsFromLastSession && !Settings.Default.NoReconnect)
|
||||
if (Settings.Default.OpenConsFromLastSession && !Settings.Default.NoReconnect && !Settings.Default.AlwaysShowPanelSelectionDlg)
|
||||
actions.Add(new PreviousSessionOpener(Runtime.ConnectionInitiator));
|
||||
|
||||
ConnectionTree.PostSetupActions = actions;
|
||||
|
||||
Reference in New Issue
Block a user