소스 검색

add scrollbar for Python errors

Johann ELSASS 5 년 전
부모
커밋
a42152c84b
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      lazpaint/lazpaintinstance.pas

+ 1 - 0
lazpaint/lazpaintinstance.pas

@@ -1666,6 +1666,7 @@ begin
         memo := TMemo.Create(fError);
         memo.Align:= alClient;
         memo.Parent := fError;
+        memo.ScrollBars := ssVertical;
         memo.Font.Name:= 'monospace';
         memo.Text := p.ErrorText;
         fError.ShowModal;