Skip to content

Commit

Permalink
Little fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mfandreich committed Jul 12, 2017
1 parent 58205bf commit d8dc2be
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
<Grid Grid.Row="4" Margin="0,2">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition Width="69*"/>
<ColumnDefinition Width="25*"/>
<ColumnDefinition/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<Label Content="New mask" Grid.Column="0" MinWidth="100"></Label>
<TextBox x:Name="AddMaskText" Grid.Column="1" VerticalContentAlignment="Center" TextChanged="TextBox_TextChanged_1"></TextBox>
Expand Down
6 changes: 3 additions & 3 deletions UnityLauncher/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ private void FillParamsPanel()
private void UpdateLocationList()
{
if(unityVersion == null) return;


var lastProject = SelectedEditor != null ? SelectedEditor.Path : Settings.GetSetting<string>(this, "LastSelectedProject");

unityVersion.Items.Clear();
unityVersion.Items.Add(new EditorInfo("---"));

var idx = 0;

var lastProject = Settings.GetSetting<string>(this, "LastSelectedProject");

int i = 1;

if (editorLoacations != null)
Expand Down

0 comments on commit d8dc2be

Please sign in to comment.