mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-23 20:47:25 -08:00
style<CommitViewer>: combine subject and message into one TextBox and enable TextWrap on it
This commit is contained in:
parent
04ea6816f4
commit
b5ebb4d76f
2 changed files with 7 additions and 22 deletions
|
@ -105,7 +105,6 @@
|
|||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition x:Name="refRow" Height="Auto"/>
|
||||
<RowDefinition Height="Auto"/>
|
||||
<RowDefinition x:Name="descRow" Height="Auto"/>
|
||||
</Grid.RowDefinitions>
|
||||
|
||||
<Grid.ColumnDefinitions>
|
||||
|
@ -194,26 +193,20 @@
|
|||
</ItemsControl>
|
||||
|
||||
<!-- MESSAGE -->
|
||||
<Label Grid.Row="3" Grid.Column="0" Content="{StaticResource Text.CommitViewer.Info.Message}" HorizontalAlignment="Right" Opacity=".6"/>
|
||||
<Label Grid.Row="3" Grid.Column="0" Content="{StaticResource Text.CommitViewer.Info.Message}" HorizontalAlignment="Right" VerticalAlignment="Top" Opacity=".6"/>
|
||||
<TextBox
|
||||
Grid.Row="3" Grid.Column="1"
|
||||
x:Name="subject"
|
||||
x:Name="message"
|
||||
IsReadOnly="True"
|
||||
Background="Transparent"
|
||||
FontFamily="Consolas"
|
||||
BorderThickness="0"
|
||||
Margin="11,0,16,0"/>
|
||||
<TextBox
|
||||
Grid.Row="4" Grid.Column="1"
|
||||
x:Name="message"
|
||||
IsReadOnly="True"
|
||||
Background="Transparent"
|
||||
BorderThickness="0"
|
||||
FontSize="11"
|
||||
Margin="11,8,0,0"/>
|
||||
TextWrapping="Wrap"
|
||||
Margin="11,5,16,0"
|
||||
VerticalAlignment="Top"/>
|
||||
</Grid>
|
||||
|
||||
<Rectangle Grid.Row="3" Grid.ColumnSpan="2" Height="1" Margin="8" Fill="{StaticResource Brush.Border2}"/>
|
||||
<Rectangle Grid.Row="3" Height="1" Margin="8" Fill="{StaticResource Brush.Border2}"/>
|
||||
|
||||
<!-- Changes -->
|
||||
<Grid Grid.Row="4">
|
||||
|
|
|
@ -85,15 +85,7 @@ namespace SourceGit.UI {
|
|||
SHA.Text = commit.SHA;
|
||||
refs.ItemsSource = commit.Decorators;
|
||||
parents.ItemsSource = parentIds;
|
||||
subject.Text = commit.Subject;
|
||||
|
||||
var commitMsg = commit.Message.Trim();
|
||||
if (string.IsNullOrEmpty(commitMsg)) {
|
||||
descRow.Height = new GridLength(0);
|
||||
} else {
|
||||
descRow.Height = GridLength.Auto;
|
||||
message.Text = commitMsg;
|
||||
}
|
||||
message.Text = (commit.Subject + "\n\n" + commit.Message.Trim()).Trim();
|
||||
|
||||
authorName.Text = commit.Author.Name;
|
||||
authorEmail.Text = commit.Author.Email;
|
||||
|
|
Loading…
Reference in a new issue