Skip to content

Commit

Permalink
Fix missing UI elements
Browse files Browse the repository at this point in the history
  • Loading branch information
aSavagePancake committed Dec 9, 2023
1 parent 7ed737d commit 1cc28ad
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
18 changes: 14 additions & 4 deletions Solaris/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
Click="ButtonPerfStats_Click"
Cursor="Hand"
Focusable="False"
Opacity="0.7">
Opacity="0.7"
ToolTipService.ToolTip="Harware Monitor">
<Grid>
<iconPacks:PackIconMaterial
HorizontalAlignment="Center"
Expand All @@ -59,7 +60,8 @@
Click="ButtonInfo_Click"
Cursor="Hand"
Focusable="False"
Opacity="0.7">
Opacity="0.7"
ToolTipService.ToolTip="Info">
<Grid>
<iconPacks:PackIconMaterial
HorizontalAlignment="Center"
Expand All @@ -77,7 +79,8 @@
Click="ButtonSettings_Click"
Cursor="Hand"
Focusable="False"
Opacity="0.7">
Opacity="0.7"
ToolTipService.ToolTip="Settings">
<Grid>
<iconPacks:PackIconMaterial
HorizontalAlignment="Center"
Expand All @@ -95,7 +98,8 @@
Click="ButtonExit_Click"
Cursor="Hand"
Focusable="False"
Opacity="0.7">
Opacity="0.7"
ToolTipService.ToolTip="Exit">
<Grid>
<iconPacks:PackIconMaterial
HorizontalAlignment="Center"
Expand Down Expand Up @@ -440,6 +444,7 @@

<Label
x:Name="TimerHours"
Cursor="Hand"
Width="100"
Height="109"
Margin="43,266,0,0"
Expand All @@ -453,6 +458,7 @@
ToolTipService.ToolTip="Timer Hours, scroll up/down to fine adjust" />
<Label
x:Name="TimerMinutes"
Cursor="Hand"
Width="100"
Height="109"
Margin="171,266,0,0"
Expand All @@ -466,6 +472,7 @@
ToolTipService.ToolTip="Timer Minutes, scroll up/down to fine adjust" />
<Label
x:Name="TimerSeconds"
Cursor="Hand"
Width="100"
Height="109"
Margin="298,266,0,0"
Expand Down Expand Up @@ -745,6 +752,7 @@
ToolTipService.ToolTip="Size unit: MB or GB" />
<TextBox
x:Name="inputFilesize"
Cursor="Hand"
Width="113"
Height="28"
Margin="230,66,0,0"
Expand All @@ -761,6 +769,7 @@
ToolTipService.ToolTip="Total File Size, scroll up/down to fine adjust" />
<TextBox
x:Name="inputCompleted"
Cursor="Hand"
Width="113"
Height="28"
Margin="230,99,0,0"
Expand All @@ -777,6 +786,7 @@
ToolTipService.ToolTip="% or MB's already downloaded, scroll up/down to fine adjust" />
<TextBox
x:Name="inputSpeed"
Cursor="Hand"
Width="113"
Height="28"
Margin="230,132,0,0"
Expand Down
2 changes: 1 addition & 1 deletion Solaris/Solaris.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ApplicationIcon>Images\AppIcon.ico</ApplicationIcon>
<FileVersion></FileVersion>
<AssemblyVersion></AssemblyVersion>
<Version>1.5.0</Version>
<Version>1.5.1</Version>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
</PropertyGroup>

Expand Down

0 comments on commit 1cc28ad

Please sign in to comment.