feat: Make paths in about page clickable
This commit is contained in:
parent
9712329924
commit
849e4ea370
@ -177,9 +177,11 @@ namespace hex::plugin::builtin {
|
||||
|
||||
ImGui::TableNextColumn();
|
||||
for (auto &path : fs::getDefaultPaths(type, true)){
|
||||
if(wolv::io::fs::isDirectory(path)){
|
||||
ImGui::TextUnformatted(wolv::util::toUTF8String(path).c_str());
|
||||
}else{
|
||||
if (wolv::io::fs::isDirectory(path)){
|
||||
if (ImGui::Hyperlink(wolv::util::toUTF8String(path).c_str())) {
|
||||
fs::openFolderExternal(path);
|
||||
}
|
||||
} else {
|
||||
ImGui::TextFormattedColored(ImGui::GetCustomColorVec4(ImGuiCustomCol_ToolbarRed), wolv::util::toUTF8String(path).c_str());
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user