Fix issue MR-339 - Connection group collapses with just one click

This commit is contained in:
Riley McArdle
2013-02-27 14:39:27 -06:00
parent 960ecba12a
commit 0a7c88a853
2 changed files with 3 additions and 2 deletions

View File

@@ -6,6 +6,7 @@
Fixed issue MR-158 - Password field not accepting Pipe
Fixed issue MR-330 - Portable version saves log to user's profile folder
Fixed issue MR-333 - Unnecessary prompt for 'close all open connections?'
Fixed issue MR-339 - Connection group collapses with just one click
Fixed issue MR-342 - Incorrect view in config pane of new connection after viewing default inheritance
Added detection of newer versions of connection files and database schemata. mRemoteNG will now refuse to open them to avoid data loss.
Improved appearance and discoverability of the connection search box.

View File

@@ -743,8 +743,8 @@ Public Class frmMain
Dim control As Control = FromChildHandle(WindowFromPoint(MousePosition))
If Not IsNothing(control) Then
' Let ComboBoxes get focus but don't simulate a mouse event
If TypeOf control Is ComboBox Then Exit Select
' Let TreeViews and ComboBoxes get focus but don't simulate a mouse event
If TypeOf control Is TreeView Or TypeOf control Is ComboBox Then Exit Select
If control.CanSelect Or TypeOf control Is MenuStrip Or TypeOf control Is ToolStrip Or TypeOf control Is Magic.Controls.InertButton Then
' Simulate a mouse event since one wasn't generated by Windows