Skip to content

Cursor().writeAt ignores row column. #27

@bsutton

Description

@bsutton

The current writeAt command ignoes the passed row and column


  void writeAt(int column, int row, String text) {
    Console.saveCursor();
    write(text);
    Console.restoreCursor();
  }

It should be:


  void writeAt(int column, int row, String text) {
    Console.saveCursor();
    move(column, row);
    write(text);
    Console.restoreCursor();
  }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions