fix, terminal scrollbar didn't handle the min pos

This commit is contained in:
Basile Burg 2020-05-29 09:38:49 +02:00
parent 3448d2dca5
commit 7c88b5a8e8
3 changed files with 4 additions and 3 deletions

View File

@ -11,6 +11,7 @@
- Messages: force auto scrolling to bottom once and if the messages context is modified.
- Runnables: ldc2 was not translated to ldmd when the "global compiler" was set to compile the runnables. (#43)
- Terminal: after launching dexed, the current directory was not constrained even when the settings to follow the current project or document path were activated. (#5)
- Terminal: problem with the min position of the scrollbar. Visible for example when a program output more lines then the *scrollbackLines* setting.
- Windows: fixed broken compilation that was caused by libdexed-d.
# v3.9.3

View File

@ -39,7 +39,6 @@ inherited TermWidget: TTermWidget
end
end
inherited toolbar: TDexedToolBar
Height = 30
Width = 666
end
end

View File

@ -50,7 +50,7 @@ type
property followEditors: boolean read fFollowEditors write fFollowEditors;
property followProjects: boolean read fFollowProjects write fFollowProjects;
property followExplorer: boolean read fFollowExplorer write fFollowExplorer;
property scrollbackLines: longword read fScrollbackLines write fScrollbackLines default 512;
property scrollbackLines: longword read fScrollbackLines write fScrollbackLines default 10000;
property shortcuts: TTerminalShortcuts read fShortcuts write fShortcuts;
end;
@ -146,7 +146,7 @@ begin
fSelectedColor:= clBlack;
fFont.Name:= 'Monospace';
fFont.Size:= 12;
fScrollbackLines:=512;
fScrollbackLines:=10000;
fShortcuts := TTerminalShortcuts.create;
end;
@ -342,6 +342,7 @@ begin
if fDisableScrollBarSync or not visible or fTerm.isNil then
exit;
i := fTerm.getVScrollInfo();
ScrollBar1.Min := i.min;
ScrollBar1.Max := i.max;
ScrollBar1.Position := i.value;
ScrollBar1.PageSize := i.pageSize;