浏览代码

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;