diff --git a/mRemoteV1/CHANGELOG.TXT b/mRemoteV1/CHANGELOG.TXT index a9f84e1c..c5d76569 100644 --- a/mRemoteV1/CHANGELOG.TXT +++ b/mRemoteV1/CHANGELOG.TXT @@ -12,6 +12,7 @@ Fixed rename edit control staying open when collapsing all folders. Changed sorting to sort all subfolders below the selected folder. Allow sorting of connections if a connection entry is selected. + Fixed loading of RDP Colors setting from SQL. Changed to use full four part version numbers with major, minor, build, and revision. 1.66 (2011-05-02): diff --git a/mRemoteV1/Config/Config.Connections.Load.vb b/mRemoteV1/Config/Config.Connections.Load.vb index 82a4945a..f2e5fad4 100644 --- a/mRemoteV1/Config/Config.Connections.Load.vb +++ b/mRemoteV1/Config/Config.Connections.Load.vb @@ -440,7 +440,7 @@ Namespace Config conI.Port = .Item("Port") conI.PuttySession = .Item("PuttySession") - conI.Colors = .Item("Colors") + conI.Colors = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPColors), .Item("Colors")) conI.Resolution = Tools.Misc.StringToEnum(GetType(Connection.Protocol.RDP.RDPResolutions), .Item("Resolution")) conI.Inherit = New Connection.Info.Inheritance(conI)