Skip to content

Commit 7be2ec8

Browse files
committed
rename fast project button
1 parent 7d70301 commit 7be2ec8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

Diff for: UnityLauncherPro/GetProjects.cs

+4
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ public static List<Project> Scan(bool getGitBranch = false, bool getArguments =
120120
p.Arguments = customArgs;
121121
p.GITBranch = gitBranch;
122122

123+
// if want to hide project and folder path for screenshot
124+
//p.Title = "Hidden Project";
125+
//p.Path = "C:/Hidden Path/";
126+
123127
projectsFound.Add(p);
124128
} // valid key
125129
} // each key

Diff for: UnityLauncherPro/MainWindow.xaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
<Label Content="_Upgrade" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
385385
</Button>
386386
<Button Grid.Column="1" ToolTip="With selected Unity" Style="{StaticResource CustomButton}" x:Name="btnCreateEmptyProject" Background="{DynamicResource ButtonBackground}" Foreground="#FFC1C1C1" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnCreateEmptyProject_Click" >
387-
<Label Content="_Fast Create" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
387+
<Label Content="_Quick Project" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
388388
</Button>
389389
<Button Grid.Column="2" Style="{StaticResource CustomButton}" x:Name="btnLaunchUnity" Background="{DynamicResource ButtonBackground}" Foreground="#FFC1C1C1" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnLaunchUnity_Click" >
390390
<Label Content="_Run Unity" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
@@ -465,7 +465,7 @@
465465
<Grid VerticalAlignment="Bottom" Margin="4,0,8,5">
466466
<Grid.ColumnDefinitions>
467467
<ColumnDefinition Width="20*" />
468-
<ColumnDefinition Width="15*" />
468+
<ColumnDefinition Width="18*" />
469469
<ColumnDefinition Width="20*" />
470470
<ColumnDefinition Width="40*" />
471471
<ColumnDefinition Width="15*" />
@@ -479,7 +479,7 @@
479479
<Label Content="Release _Notes" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
480480
</Button>
481481
<Button Grid.Column="1" ToolTip="With selected Unity" Style="{StaticResource CustomButton}" x:Name="btnCreateEmptyProjectUnity" Background="{DynamicResource ButtonBackground}" Foreground="#FFC1C1C1" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnCreateEmptyProjectUnity_Click" >
482-
<Label Content="_Fast Create" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
482+
<Label Content="_Quick Project" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />
483483
</Button>
484484
<Button Grid.Column="2" Style="{StaticResource CustomButton}" x:Name="btnUpdateUnity" Background="{DynamicResource ButtonBackground}" Foreground="{DynamicResource ButtonForeground}" Margin="8,0,0,0" BorderBrush="{x:Null}" Click="BtnUpdateUnity_Click">
485485
<Label Content="Check Updates" Foreground="{Binding Path=Foreground, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type Control}}}" />

0 commit comments

Comments
 (0)