Skip to content

Commit

Permalink
Standardize plugin location based on forum feedback
Browse files Browse the repository at this point in the history
Fix to use AppLocalDataLocation

Signed-off-by: Geoff Hutchison <geoff.hutchison@gmail.com>
  • Loading branch information
ghutchis committed Feb 8, 2024
1 parent 14d8473 commit 1fe7624
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 1fe7624

Please sign in to comment.