Skip to content

Commit

Permalink
Merge pull request #675 from FastReports/sync_branch_2024.1.6
Browse files Browse the repository at this point in the history
FastReport.OpenSource 2024.1.6
  • Loading branch information
0legK authored Feb 13, 2024
2 parents 514efec + dbb7794 commit 4fbb7c9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions FastReport.Base/BandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -525,6 +525,7 @@ public override void Assign(Base source)
BeforeLayoutEvent = src.BeforeLayoutEvent;
AfterLayoutEvent = src.AfterLayoutEvent;
RepeatBandNTimes = src.RepeatBandNTimes;
IsLastRow = src.IsLastRow;
}

internal virtual void UpdateWidth()
Expand Down Expand Up @@ -741,7 +742,12 @@ public override float CalcHeight()
foreach (ReportComponentBase obj in Objects)
{
if (obj.GrowToBottom)
{
obj.Height = Height - obj.Top;
// reserve place for border
if (IsLastRow && obj.Border.Lines.HasFlag(BorderLines.Bottom))
obj.Height -= Border.BottomLine.Width;
}
}

OnAfterLayout(EventArgs.Empty);
Expand Down
1 change: 1 addition & 0 deletions FastReport/Resources/en.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2382,6 +2382,7 @@
<File Text="Working with files"/>
<Editing Text="Editing"/>
<Help Text="Help"/>
<SelectAll Text="Select all"/>
<Default Text="Default"/>
<Info Text="To change the keyboard shortcut, you need to double-click on the desired one, or select and press Enter."/>
<Command Text="Command"/>
Expand Down
1 change: 1 addition & 0 deletions Localization/Russian.frl
Original file line number Diff line number Diff line change
Expand Up @@ -2181,6 +2181,7 @@
<File Text="Работа с файлами"/>
<Editing Text="Редактирование"/>
<Help Text="Помощь"/>
<SelectAll Text="Выбрать все"/>
<Default Text="По умолчанию"/>
<Command Text="Команда"/>
<Info Text="Для изменения сочетания клавиш необходимо два раза кликнуть на нужный, либо выбрать и нажать Enter."/>
Expand Down
12 changes: 6 additions & 6 deletions UsedPackages.version
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
<FRCompatVersionNET>[2024.1.0]</FRCompatVersionNET>

<FRCompatVersion>[2024.1.0]</FRCompatVersion>
<FRCompatSkiaVersion>[2024.1.4]</FRCompatSkiaVersion>
<FRCompatSkiaVersion>[2024.1.6]</FRCompatSkiaVersion>

<FRDataVisualizationVersion>[2024.1.0]</FRDataVisualizationVersion>
<FRDataVisualizationSkiaVersion>[2024.1.4]</FRDataVisualizationSkiaVersion>
<FRDataVisualizationSkiaVersion>[2024.1.6]</FRDataVisualizationSkiaVersion>

<!-- WPF -->
<FRWPFVersion>2024.1.2</FRWPFVersion>
<FRWPFRoslynPadVersion>2024.1.2</FRWPFRoslynPadVersion>
<FRWPFVersion>2024.1.5</FRWPFVersion>
<FRWPFRoslynPadVersion>2024.1.5</FRWPFRoslynPadVersion>
<FRFormsWPFVersion>2024.1.2</FRFormsWPFVersion>
<FRCompatWPFVersion>2024.1.0</FRCompatWPFVersion>
<FRDataVisualizationWPFVersion>2024.1.0</FRDataVisualizationWPFVersion>
Expand Down Expand Up @@ -41,9 +41,9 @@
<!-- This group sets version used packages in Demos -->
<PropertyGroup>

<FRCoreVersion>2023.2.17</FRCoreVersion>
<FRCoreVersion>2024.1.5</FRCoreVersion>

<FRCoreWebVersion>2023.2.17</FRCoreWebVersion>
<FRCoreWebVersion>2024.1.5</FRCoreWebVersion>

<FROSVersion>2023.2.16</FROSVersion>

Expand Down

0 comments on commit 4fbb7c9

Please sign in to comment.