Skip to content

Commit

Permalink
Minor fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Holt59 committed Aug 9, 2024
1 parent 1cca216 commit a2c6362
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 25 deletions.
4 changes: 1 addition & 3 deletions src/settingsdialogextensionrow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,8 @@ ExtensionListItemWidget::ExtensionListItemWidget(const IExtension& extension)
ui->setupUi(this);

const auto& metadata = extension.metadata();
const auto& icon = metadata.icon().isNull() ? defaultIcon() : metadata.icon();

const auto& icon = metadata.icon().isNull() ? defaultIcon() : metadata.icon();

QIcon icon = style()->standardIcon(QStyle::SP_DialogOkButton);
ui->extensionIcon->setPixmap(icon.pixmap(QSize(48, 48)));
ui->extensionName->setText(extension.metadata().name());

Expand Down
21 changes: 0 additions & 21 deletions vcpkg-configuration.json

This file was deleted.

23 changes: 22 additions & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
"boost-thread",
"boost-uuid",
"lz4",
"mo2-cmake",
"mo2-libbsarch",
"zlib"
],
"features": {
"standalone": {
"description": "Build Standalone.",
"dependencies": [
"mo2-cmake",
"mo2-archive",
"mo2-bsatk",
"mo2-esptk",
Expand All @@ -28,5 +28,26 @@
"usvfs"
]
}
},
"vcpkg-configuration": {
"default-registry": {
"kind": "git",
"repository": "https://github.com/Microsoft/vcpkg",
"baseline": "8ae59b5b1329a51875abc71d528da93d9c3e8972"
},
"registries": [
{
"kind": "git",
"repository": "https://github.com/Microsoft/vcpkg",
"baseline": "8ae59b5b1329a51875abc71d528da93d9c3e8972",
"packages": ["boost*", "boost-*"]
},
{
"kind": "git",
"repository": "https://github.com/ModOrganizer2/vcpkg-registry",
"baseline": "84ff92223433d101738a3c6cef96fa6ae6a6f302",
"packages": ["mo2-*", "7zip", "usvfs"]
}
]
}
}

0 comments on commit a2c6362

Please sign in to comment.