diff --git a/DS4Windows/DS4Windows/WinProgs.cs b/DS4Windows/DS4Windows/WinProgs.cs index dc0312b..aabb282 100644 --- a/DS4Windows/DS4Windows/WinProgs.cs +++ b/DS4Windows/DS4Windows/WinProgs.cs @@ -366,8 +366,8 @@ namespace DS4Windows private void addDirectoryToolStripMenuItem_Click(object sender, EventArgs e) { - /*VistaFolderBrowserDialog fbd = new VistaFolderBrowserDialog(); - if (fbd.ShowDialog() == System.Windows.Forms.DialogResult.OK) + FolderBrowserDialog fbd = new FolderBrowserDialog(); + if (fbd.ShowDialog() == DialogResult.OK) { try { @@ -381,13 +381,13 @@ namespace DS4Windows Timer appstimer = new Timer(); appstimer.Start(); appstimer.Tick += appstimer_Tick; - }*/ + } } private void browseForOtherProgramsToolStripMenuItem_Click(object sender, EventArgs e) { openProgram.Filter = Properties.Resources.Programs+"|*.exe|" + Properties.Resources.Shortcuts + "|*.lnk"; - if (openProgram.ShowDialog() == System.Windows.Forms.DialogResult.OK) + if (openProgram.ShowDialog() == DialogResult.OK) { string file = openProgram.FileName; if (file.EndsWith(".lnk")) diff --git a/DS4Windows/Properties/AssemblyInfo.cs b/DS4Windows/Properties/AssemblyInfo.cs index 81be9f6..3745a48 100644 --- a/DS4Windows/Properties/AssemblyInfo.cs +++ b/DS4Windows/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.4.266")] -[assembly: AssemblyFileVersion("1.4.266")] +[assembly: AssemblyVersion("1.4.267")] +[assembly: AssemblyFileVersion("1.4.267")]