Skip to content

Commit

Permalink
- History Tab - Column headers aligned
Browse files Browse the repository at this point in the history
- Status bar height should be increased
- Increase distance of Wasabi Icon on the left upper and File menuitem
  • Loading branch information
molnard committed Nov 18, 2018
1 parent c162070 commit 0b374a9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions WalletWasabi.Gui/Controls/StatusBar.xaml
Expand Up @@ -2,7 +2,8 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:behaviors="clr-namespace:WalletWasabi.Gui.Behaviors;assembly=WalletWasabi.Gui" xmlns:behaviors="clr-namespace:WalletWasabi.Gui.Behaviors;assembly=WalletWasabi.Gui"
xmlns:i="clr-namespace:Avalonia.Xaml.Interactivity;assembly=Avalonia.Xaml.Interactivity" xmlns:i="clr-namespace:Avalonia.Xaml.Interactivity;assembly=Avalonia.Xaml.Interactivity"
xmlns:converters="clr-namespace:WalletWasabi.Gui.Converters;assembly=WalletWasabi.Gui"> xmlns:converters="clr-namespace:WalletWasabi.Gui.Converters;assembly=WalletWasabi.Gui"
Height="25">
<UserControl.Resources> <UserControl.Resources>
<converters:FilterLeftValueConverter x:Key="FilterLeftValueConverter" /> <converters:FilterLeftValueConverter x:Key="FilterLeftValueConverter" />
<converters:StatusColorConverter x:Key="StatusColorConverter" /> <converters:StatusColorConverter x:Key="StatusColorConverter" />
Expand All @@ -15,7 +16,7 @@
<i:Interaction.Behaviors> <i:Interaction.Behaviors>
<behaviors:CommandOnClickBehavior Command="{Binding UpdateCommand}" /> <behaviors:CommandOnClickBehavior Command="{Binding UpdateCommand}" />
</i:Interaction.Behaviors> </i:Interaction.Behaviors>
<DockPanel LastChildFill="True" Margin="10 0"> <DockPanel LastChildFill="True" Margin="10 0" VerticalAlignment="Center" >
<StackPanel Orientation="Horizontal" Spacing="20" DockPanel.Dock="Right"> <StackPanel Orientation="Horizontal" Spacing="20" DockPanel.Dock="Right">


<StackPanel Orientation="Horizontal" Spacing="4" IsVisible="{Binding !CriticalUpdateAvailable}"> <StackPanel Orientation="Horizontal" Spacing="4" IsVisible="{Binding !CriticalUpdateAvailable}">
Expand Down
Expand Up @@ -25,7 +25,7 @@
</Grid> </Grid>
</Grid> </Grid>
<DockPanel LastChildFill="True" DockPanel.Dock="Bottom"> <DockPanel LastChildFill="True" DockPanel.Dock="Bottom">
<Grid ColumnDefinitions="40, 160, 100, *" Margin="5 0" DockPanel.Dock="Top"> <Grid ColumnDefinitions="40, 160, 100, *" Margin="10 0" DockPanel.Dock="Top">
<TextBlock Text="" /> <TextBlock Text="" />
<TextBlock Text="Date" Grid.Column="1" /> <TextBlock Text="Date" Grid.Column="1" />
<TextBlock Text="Amount (BTC)" Grid.Column="2" /> <TextBlock Text="Amount (BTC)" Grid.Column="2" />
Expand Down
2 changes: 1 addition & 1 deletion WalletWasabi.Gui/MainWindow.xaml
Expand Up @@ -24,7 +24,7 @@
</i:Interaction.Behaviors> </i:Interaction.Behaviors>
<cont:MetroWindow.TitleBarContent> <cont:MetroWindow.TitleBarContent>
</cont:MetroWindow.TitleBarContent> </cont:MetroWindow.TitleBarContent>
<Grid> <Grid Margin="0,10,0,0">
<DockPanel LastChildFill="True"> <DockPanel LastChildFill="True">
<wasabi:StatusBar DockPanel.Dock="Bottom" DataContext="{Binding StatusBar}" /> <wasabi:StatusBar DockPanel.Dock="Bottom" DataContext="{Binding StatusBar}" />
<shell:ShellView DataContext="{Binding Shell}" /> <shell:ShellView DataContext="{Binding Shell}" />
Expand Down

0 comments on commit 0b374a9

Please sign in to comment.