Skip to content

Commit

Permalink
v0.8.11 fixed ctrl-e was causing centered text in word wrap mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Androthi committed Jul 31, 2021
1 parent 19917f9 commit 790482d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/SavageEd.hhf
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

readonly

version :string := "SavageEd v0.8.10";
version :string := "SavageEd v0.8.11";

type
// Message and dispatch table related definitions:
Expand Down
4 changes: 2 additions & 2 deletions src/SavageEd.hla
Original file line number Diff line number Diff line change
Expand Up @@ -542,7 +542,7 @@ proc

command_select_to_eol();
w.SendMessage( info.hred, w.EM_REPLACESEL,true, s_empty );

jmp skip_proc;
endif;

case( w.VK_BSLASH )
Expand Down Expand Up @@ -837,7 +837,7 @@ proc
dbg.put("char =>", wParam );

mov( wParam, eax );
if( ctrl_down || eax = w.VK_TAB || eax = w.VK_ESCAPE ) then
if( ctrl_down || eax = w.VK_TAB || eax = w.VK_ESCAPE || eax = #$05 ) then
jmp skip_proc;
endif;

Expand Down

0 comments on commit 790482d

Please sign in to comment.