Skip to content

Commit

Permalink
Fix verbose messages option label being cut off
Browse files Browse the repository at this point in the history
  • Loading branch information
TheNathannator committed May 24, 2024
1 parent c582b82 commit 9cd9799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Program/MainWindow/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<Button x:Name="startButton" Content="Start" FontSize="18" Width="150" Margin="0,25,0,0" VerticalAlignment="Stretch" HorizontalAlignment="Right" IsEnabled="False" Click="startButton_Click"/>
<CheckBox x:Name="packetDebugCheckBox" Content="Show packets (for debugging)" Height="22" Width="180" Margin="175,0,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Checked="packetDebugCheckBox_CheckedChanged" Unchecked="packetDebugCheckBox_CheckedChanged"/>
<CheckBox x:Name="packetLogCheckBox" Content="Log packets to file" Height="22" Width="120" Margin="175,23,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Checked="packetLogCheckBox_CheckedChanged" Unchecked="packetLogCheckBox_CheckedChanged"/>
<CheckBox x:Name="verboseLogCheckBox" Content="Show verbose (unimportant) messages" Width="210" Margin="175,46,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Checked="verboseLogCheckBox_CheckedChanged" Unchecked="verboseLogCheckBox_CheckedChanged"/>
<CheckBox x:Name="verboseLogCheckBox" Content="Show verbose (unimportant) messages" Width="230" Margin="175,46,0,0" VerticalAlignment="Top" HorizontalAlignment="Left" Checked="verboseLogCheckBox_CheckedChanged" Unchecked="verboseLogCheckBox_CheckedChanged"/>
</Grid>
</GroupBox>
<GroupBox Header="Console" Margin="0,274,0,0">
Expand Down

0 comments on commit 9cd9799

Please sign in to comment.