Skip to content
This repository has been archived by the owner on Apr 24, 2024. It is now read-only.

Commit

Permalink
Fix manual file path pointer to wrong directory
Browse files Browse the repository at this point in the history
  • Loading branch information
SamVanheer committed Jan 26, 2023
1 parent ad0f2f8 commit 1be6d39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hlam/ui/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ MainWindow::MainWindow(AssetManager* application)

connect(_ui.ActionOpenManual, &QAction::triggered, this, [this]
{
const QString manualLocation{QApplication::applicationDirPath() + "/../manual/HalfLifeAssetManagerManual.pdf"};
const QString manualLocation{QApplication::applicationDirPath() + "/manual/HalfLifeAssetManagerManual.pdf"};
qt::LaunchDefaultProgram(manualLocation);
});
connect(_ui.ActionAbout, &QAction::triggered, this, [this] { ShowAboutDialog(this); });
Expand Down

0 comments on commit 1be6d39

Please sign in to comment.