removed debug calls

This commit is contained in:
WeeXnes 2025-04-26 17:35:33 +02:00
parent 977f80f5b4
commit 5ae2c2b0e0
2 changed files with 1 additions and 7 deletions

View file

@ -5,7 +5,7 @@
xmlns:local="clr-namespace:PS2_Manager.Core" xmlns:local="clr-namespace:PS2_Manager.Core"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="PS2_Manager.MainWindow" x:Class="PS2_Manager.MainWindow"
Title="PS2_Manager" Title="PS2 Games Manager"
Background="#201c29" Background="#201c29"
Width="990" Width="990"
Height="520" Height="520"
@ -13,7 +13,6 @@
MinWidth="600" MinWidth="600"
WindowStartupLocation="CenterScreen" WindowStartupLocation="CenterScreen"
Loaded="Control_OnLoaded" Loaded="Control_OnLoaded"
Resized="WindowBase_OnResized"
Foreground="White"> Foreground="White">
<Grid ColumnDefinitions="*, 10, *, 10, 320" Background="Transparent"> <Grid ColumnDefinitions="*, 10, *, 10, 320" Background="Transparent">
<Grid Grid.Column="0"> <Grid Grid.Column="0">

View file

@ -340,9 +340,4 @@ public partial class MainWindow : Window
{ {
this.ArtworkType.Value = Artwork.PrevType(this.ArtworkType.Value); this.ArtworkType.Value = Artwork.PrevType(this.ArtworkType.Value);
} }
private void WindowBase_OnResized(object? sender, WindowResizedEventArgs e)
{
VanillaConsole.WriteLine(e.ClientSize);
}
} }