diff options
author | sr55 <[email protected]> | 2013-12-21 23:51:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-12-21 23:51:58 +0000 |
commit | 164190053ac8ef37f98e944ae7f9368e8ae5279a (patch) | |
tree | 89bdc2ea2b8b62cc696a024b78632bf9fae9fe97 /win/CS/HandBrakeWPF/Views | |
parent | 2c3cc803fd04b14a87e6fc2cacbc2fbe96888fea (diff) |
WinGui: Attempt to make the new source selection window less jarring in terms of positioning. Docked it to the left rather than centre and reduce the spacing between the UI elements.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5938 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index 9c5a21f00..4ea954437 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -685,9 +685,9 @@ </Grid>
<!-- Source Selection-->
- <Controls:SourceSelection Grid.Row="1" Width="400" VerticalAlignment="Stretch" BorderThickness="1" BorderBrush="DarkGray"
+ <Controls:SourceSelection Grid.Row="1" MinWidth="300" HorizontalAlignment="Left" VerticalAlignment="Stretch" BorderThickness="1" BorderBrush="DarkGray"
Visibility="{Binding ShowSourceSelection, Converter={StaticResource boolToVisConverter}}"
- Margin="0,10,0,10" />
+ />
<!-- StatusPanel -->
<Controls:StatusPanel x:Name="loadingPanel"
|