diff options
author | Matthew Kosarek <mattkae@protonmail.com> | 2021-05-24 13:32:27 -0400 |
---|---|---|
committer | Matthew Kosarek <mattkae@protonmail.com> | 2021-05-24 13:32:27 -0400 |
commit | c5e5d7c939a2640763775b0688ed698c51ec28c1 (patch) | |
tree | eaa9f5493cf218471f96207d2fa86a9192f07606 /transpiler | |
parent | d5326e9f605e11fc33a7f37cc0ae674258de2424 (diff) |
Applying force to the object using the mouse cursor
Diffstat (limited to 'transpiler')
-rwxr-xr-x | transpiler/transpiler | bin | 38744 -> 38744 bytes | |||
-rw-r--r-- | transpiler/transpiler.cpp | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/transpiler/transpiler b/transpiler/transpiler Binary files differindex 3dba1f8..5672fb4 100755 --- a/transpiler/transpiler +++ b/transpiler/transpiler 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()); } } |