File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -82,8 +82,11 @@ public static void Save()
8282 {
8383 writer . Formatting = Formatting . Indented ;
8484
85- writer . WriteComment ( "\r \n Glue settings file\r \n " ) ;
86- sw . Write ( "\r \n " ) ;
85+ writer . WriteComment (
86+ Environment . NewLine +
87+ "Glue settings file" +
88+ Environment . NewLine ) ;
89+ sw . Write ( Environment . NewLine ) ;
8790
8891 List < FormSettings > settingsList = new List < FormSettings > ( s_collectedSettings . Values ) ;
8992
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ internal void UpdateKeys()
7777 {
7878 Key key = Keyboard . GetKey ( keyCode ) ;
7979 this . textBoxButtonStates . Text += key . ToString ( ) ; ;
80- this . textBoxButtonStates . Text += " \r \n " ;
80+ this . textBoxButtonStates . Text += Environment . NewLine ;
8181 }
8282
8383 WindowHandleUtils . HideCaret ( this . textBoxButtonStates . Handle ) ;
Original file line number Diff line number Diff line change 1- using System . Reflection ;
1+ using System ;
2+ using System . Reflection ;
23using System . Runtime . InteropServices ;
34
5+
6+
47// General Information about an assembly is controlled through the following
58// set of attributes. Change these attribute values to modify the information
69// associated with an assembly.
710[ assembly: AssemblyTitle ( "Glue" ) ]
8- [ assembly: AssemblyDescription ( "WARNING: MAY LOG KEYS\r \n Macro tool and sticky stuff. Do not sniff. Light fuse and get away." ) ]
11+ [ assembly: AssemblyDescription (
12+ "WARNING: MAY LOG KEYS. " +
13+ "Macro tool and sticky stuff. Do not sniff. Light fuse and get away." ) ]
914[ assembly: AssemblyConfiguration ( "" ) ]
1015[ assembly: AssemblyCompany ( "Gluesoft is not a company, but it *is* soft." ) ]
1116[ assembly: AssemblyProduct ( "Glue" ) ]
You can’t perform that action at this time.
0 commit comments