summaryrefslogtreecommitdiff
path: root/transpiler
diff options
context:
space:
mode:
authorMatthew Kosarek <mattkae@protonmail.com>2021-05-24 13:32:27 -0400
committerMatthew Kosarek <mattkae@protonmail.com>2021-05-24 13:32:27 -0400
commitc5e5d7c939a2640763775b0688ed698c51ec28c1 (patch)
treeeaa9f5493cf218471f96207d2fa86a9192f07606 /transpiler
parentd5326e9f605e11fc33a7f37cc0ae674258de2424 (diff)
Applying force to the object using the mouse cursor
Diffstat (limited to 'transpiler')
-rwxr-xr-xtranspiler/transpilerbin38744 -> 38744 bytes
-rw-r--r--transpiler/transpiler.cpp2
2 files changed, 1 insertions, 1 deletions
diff --git a/transpiler/transpiler b/transpiler/transpiler
index 3dba1f8..5672fb4 100755
--- a/transpiler/transpiler
+++ b/transpiler/transpiler
Binary files differ
diff --git a/transpiler/transpiler.cpp b/transpiler/transpiler.cpp
index 3f2a006..5c1de66 100644
--- a/transpiler/transpiler.cpp
+++ b/transpiler/transpiler.cpp
@@ -14,7 +14,7 @@ struct InnerCategory {
if (isLabel) {
sb.format("\t\t\t\t\t<li><label>%s</label></li>\n", label.getValue());
} else {
- sb.format("\t\t\t\t\t<li><a href=\"%s\">%s</a></li>\n", path.getValue(), label.getValue());
+ sb.format("\t\t\t\t\t<li><a title=\"%s\" href=\"%s\">%s</a></li>\n", path.getValue(), path.getValue(), label.getValue());
}
}