Skip to content

Commit

Permalink
fixed bug in SelectFile, need to determine full output path
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Tammik committed Sep 3, 2014
1 parent 4ce4503 commit eda1c79
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion RvtVa3c/Command.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ static bool SelectFile(

if( rc )
{
filename = Path.GetFileName( dlg.FileName );
filename = Path.Combine( dlg.InitialDirectory,
dlg.FileName );

folder_path = Path.GetDirectoryName(
filename );
Expand Down
5 changes: 3 additions & 2 deletions RvtVa3c/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
//
// History:
// 2014-09-02 2015.0.0.19 minor cleanup before removing scene definition
// 2014-09-03 2015.0.0.20 fixed bug in SelectFile, need to determine full output path
//
[assembly: AssemblyVersion( "2015.0.0.19" )]
[assembly: AssemblyFileVersion( "2015.0.0.19" )]
[assembly: AssemblyVersion( "2015.0.0.20" )]
[assembly: AssemblyFileVersion( "2015.0.0.20" )]

0 comments on commit eda1c79

Please sign in to comment.