Closed joelspadin closed 9 years ago
The rich text box in ConsoleControl.xaml uses double line spacing, so it does not look like a proper console. Adding the following to the <RichTextBox> element fixes it to single line spacing.
<RichTextBox>
<RichTextBox.Resources> <Style TargetType="{x:Type Paragraph}"> <Setter Property="Margin" Value="0" /> </Style> </RichTextBox.Resources>
Fixed in 1.1, release will be made shortly.
The rich text box in ConsoleControl.xaml uses double line spacing, so it does not look like a proper console. Adding the following to the
<RichTextBox>
element fixes it to single line spacing.