Skip to content

Commit

Permalink
fixed compile error, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Oct 27, 2023
1 parent 32f9caa commit 4715e6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ the abstract syntac tree (AST) is edited directly by a custom editor.
## Editor

The editor is available for the terminal, as a desktop GUI app and in the browser.
You can try the browser version [here](https://nimaoth.github.io/AbsytreeBrowser/).
You can try the browser version [here](https://nimaoth.github.io/AbsytreeBrowser/) ([old version](https://nimaoth.github.io/AbsytreeBrowser/old/absytree_browser.html)).

[Test report](https://nimaoth.github.io/Absytree/testresults.html)

Expand Down
2 changes: 1 addition & 1 deletion src/platform/widget_builder_model_document.nim
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ method createUI*(self: ModelDocumentEditor, builder: UINodeBuilder, app: App): s
self.scrollOffset = path[0]

# cursor
proc drawCursor(cursor: CellCursor, thick: bool, cursorColor: Color, id: int): Option[UINode] =
proc drawCursor(cursor: CellCursor, thick: bool, cursorColor: Color, id: int32): Option[UINode] =
if cursor.getTargetCell(true).getSome(targetCell) and self.cellWidgetContext.cellToWidget.contains(targetCell.id):
let node = self.cellWidgetContext.cellToWidget[targetCell.id]
# debugf"cursor {self.cursor} at {targetCell.dump}, {node.dump}"
Expand Down

0 comments on commit 4715e6c

Please sign in to comment.