Fixed loading of RDP Colors setting from SQL.

This commit is contained in:
Riley McArdle
2011-05-25 18:33:30 -05:00
parent cec787fd63
commit 2b1732d061
2 changed files with 2 additions and 1 deletions

View File

@@ -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):

View File

@@ -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)