mirror of
https://github.com/cemu-project/DS4Windows.git
synced 2024-11-26 11:04:21 +01:00
Version 1.4.267
Fixes for adding programs to auto profiles
This commit is contained in:
parent
86079b029e
commit
f5c9dbff11
@ -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"))
|
||||
|
@ -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")]
|
||||
|
Loading…
Reference in New Issue
Block a user