Skip to content

Commit

Permalink
Fix cursor trail Issue #6
Browse files Browse the repository at this point in the history
  • Loading branch information
SMerrony committed Nov 11, 2022
1 parent beafa2f commit 1d617f1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
6 changes: 5 additions & 1 deletion changelog
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
dashera (0.12.2) stable; urgency=low

[SMerrony]
* Fix issue with Edit|Paste not actually pasting into data stream
* Fix issue with cursor sometimes leaving trail on screen
* Add View menu
* Add View|History to display terminal history, remove scrollback
* Move Edit|Resize to View|Resize Terminal
* Upgrade Gtkada to v.23
* Embed font and icon resources in code using 'are'
* Add `-amber` and `-white` options to emulate different phosphor colours

-- SMerrony <merrony@gmail.com> Fri, 4 Nov 2022 10:00:00 +0200
-- SMerrony <merrony@gmail.com> Fri, 11 Nov 2022 10:00:00 +0200

dashera (0.12.1) stable; urgency=low

Expand Down
1 change: 1 addition & 0 deletions src/display_p.adb
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ package body Display_P is

procedure Set_Cursor (X, Y : Natural) is
begin
Disp.Cells (Disp.Cursor_Y, Disp.Cursor_X).Set_Dirty;
Disp.Cursor_X := X;
Disp.Cursor_Y := Y;
end Set_Cursor;
Expand Down

0 comments on commit 1d617f1

Please sign in to comment.