소스 검색

Ctrl-Y alternative to undo

Juliette ELSASS 1 년 전
부모
커밋
7910760f0e
1개의 변경된 파일6개의 추가작업 그리고 0개의 파일을 삭제
  1. 6 0
      lazpaint/lazpaintmainform.pas

+ 6 - 0
lazpaint/lazpaintmainform.pas

@@ -1901,6 +1901,12 @@ begin
       if EditDeselect.Execute then
         Key := 0;
     end else
+    if (Key = VK_Y) and snapPressed and EditRedo.Enabled then
+    begin
+      EditRedo.Execute;
+      Key := 0;
+    end
+    else
     if LazPaintInstance.ImageListWindowVisible then
       LazPaintInstance.ImageListWindowVisibleKeyDown(Key,Shift);
     If Key = 0 then UpdateToolbar;