v1.14 — Reset window height on Back button navigation

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hariel1985
2026-03-31 14:11:56 +02:00
szülő ea8fa98bd6
commit 0bc3bd2588
3 fájl változott, egészen pontosan 7 új sor hozzáadva és 4 régi sor törölve

Fájl megtekintése

@@ -9,9 +9,9 @@
<Company>InstaSoft Zrt.</Company> <Company>InstaSoft Zrt.</Company>
<Product>InstaSoft Office Tool</Product> <Product>InstaSoft Office Tool</Product>
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright> <Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
<Version>1.1.3</Version> <Version>1.1.4</Version>
<AssemblyVersion>1.1.3.0</AssemblyVersion> <AssemblyVersion>1.1.4.0</AssemblyVersion>
<FileVersion>1.1.3.0</FileVersion> <FileVersion>1.1.4.0</FileVersion>
<ApplicationManifest>app.manifest</ApplicationManifest> <ApplicationManifest>app.manifest</ApplicationManifest>
<LangVersion>latest</LangVersion> <LangVersion>latest</LangVersion>
</PropertyGroup> </PropertyGroup>

Fájl megtekintése

@@ -45,7 +45,7 @@
Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/> Foreground="{StaticResource TextSecondaryBrush}" Margin="0,-2,0,0"/>
</StackPanel> </StackPanel>
</StackPanel> </StackPanel>
<TextBlock Text="v1.13" HorizontalAlignment="Right" VerticalAlignment="Center" <TextBlock Text="v1.14" HorizontalAlignment="Right" VerticalAlignment="Center"
FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/> FontSize="12" Foreground="{StaticResource TextSecondaryBrush}"/>
</Grid> </Grid>
</Border> </Border>

Fájl megtekintése

@@ -141,6 +141,9 @@ namespace InstaSoftOfficeTool
private void BtnBack_Click(object sender, RoutedEventArgs e) private void BtnBack_Click(object sender, RoutedEventArgs e)
{ {
// Reset window height in case a page enlarged it
Height = 550;
if (_currentPageIndex > 0 && _currentFlow == "install") if (_currentPageIndex > 0 && _currentFlow == "install")
{ {
_currentPageIndex--; _currentPageIndex--;