Skip to content

Commit

Permalink
Merge pull request #1605 from ghutchis/switch-download-location
Browse files Browse the repository at this point in the history
Standardize plugin location based on forum feedback
  • Loading branch information
ghutchis committed Feb 8, 2024
2 parents 14d8473 + 1fe7624 commit 1c984d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion avogadro/qtplugins/plugindownloader/downloaderwidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ DownloaderWidget::DownloaderWidget(QWidget* parent)
: QDialog(parent), m_ui(new Ui::DownloaderWidget)
{
m_filePath =
QStandardPaths::writableLocation(QStandardPaths::AppDataLocation);
QStandardPaths::writableLocation(QStandardPaths::AppLocalDataLocation);
m_NetworkAccessManager = new QNetworkAccessManager(this);
m_ui->setupUi(this);
// enable links in the readme to open an external browser
Expand Down

0 comments on commit 1c984d3

Please sign in to comment.