We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be07090 commit 00cc3ddCopy full SHA for 00cc3dd
src/pages/Advanced.cpp
@@ -61,7 +61,7 @@ namespace {
61
}
62
63
std::optional<ModMetadata::IssuesInfo> inputIssues(std::optional<ModMetadata::IssuesInfo> x) {
64
- ModMetadata::IssuesInfo a = x ? *x : ModMetadata::IssuesInfo("");
+ ModMetadata::IssuesInfo a = x ? *x : ModMetadata::IssuesInfo{"", std::nullopt};
65
std::string url = a.url ? *a.url : "";
66
bool inputInfo = ImGui::InputText("issues.info", &a.info);
67
bool inputUrl = ImGui::InputText("issues.url", &url);
0 commit comments