Skip to content
This repository has been archived by the owner on Dec 21, 2021. It is now read-only.

Commit

Permalink
Change open filetype mask in rvu Windows app
Browse files Browse the repository at this point in the history
  • Loading branch information
Gregungory committed Feb 4, 2016
1 parent 24a82b2 commit 1a4908b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ ENDIF( BUILD_PACKAGE )

set(CPACK_PACKAGE_VERSION_MAJOR 5)
set(CPACK_PACKAGE_VERSION_MINOR 0)
set(CPACK_PACKAGE_VERSION_PATCH a)
set(CPACK_PACKAGE_VERSION_PATCH a.7)
set(CPACK_PACKAGE_INSTALL_DIRECTORY "Radiance")
SET(CPACK_RESOURCE_FILE_WELCOME "${radiance_SOURCE_DIR}/Welcome.txt")
SET(CPACK_RESOURCE_FILE_README "${radiance_SOURCE_DIR}/README.txt")
Expand Down
2 changes: 1 addition & 1 deletion src/qtrvu/mainwindow.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ void MainWindow::saveCurrentImage()
void MainWindow::loadView()
{
QString viewFileName = QFileDialog::getOpenFileName(this, tr("Open View File"),
"", tr("View Files (*.vp *.vf)"));
"", tr("View Files (*.vf *.vp *.vfh *.vfv)"));
QString command = "last " + viewFileName;
this->runCommand(command.toLatin1());
}
Expand Down

0 comments on commit 1a4908b

Please sign in to comment.