Skip to content

Commit dd04a6b

Browse files
committed
Minor tweaks
1 parent 99758f7 commit dd04a6b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

CompactGUI/ViewModels/HomeViewModel.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ Partial Public NotInheritable Class HomeViewModel : Inherits ObservableRecipient
204204

205205
Dim retState As ActionState
206206

207-
If Compressing OrElse Folders.Any(Function(f) f.FolderActionState = ActionState.Working) Then
207+
If Compressing OrElse Folders.Any(Function(f) f.FolderActionState = ActionState.Working OrElse f.FolderActionState = ActionState.Paused) Then
208208
retState = ActionState.Working
209209
ElseIf Folders.Any(Function(f) f.FolderActionState = ActionState.Analysing) Then
210210
retState = ActionState.Analysing

CompactGUI/Views/Components/CompressionMode_Radio.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
Width="0"
145145
HorizontalAlignment="Left"
146146
Background="{TemplateBinding Foreground}"
147-
CornerRadius="0 0 3 3" />
147+
CornerRadius="0 0 0 3" />
148148
</Grid>
149149

150150
</ControlTemplate>

CompactGUI/Views/Pages/FolderView.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
Foreground="#30FFFFFF" />
106106

107107
<StackPanel Grid.Row="1" Orientation="Horizontal" Margin="0 0 0 5">
108-
<ui:TextBlock Text="current size" FontSize="13" Foreground="#30FFFFFF" VerticalAlignment="Bottom" Margin="0 0 8 -1"/>
108+
<ui:TextBlock Text="uncompressed size" FontSize="13" Foreground="#30FFFFFF" VerticalAlignment="Bottom" Margin="0 0 8 -1"/>
109109
<ui:TextBlock Text="{Binding Folder.UncompressedBytes, Converter={StaticResource BytesToReadableConverter}}" FontSize="20" VerticalAlignment="Bottom" Width="80"/>
110110
<ui:TextBlock Text="contained files" FontSize="13" Foreground="#30FFFFFF" VerticalAlignment="Bottom" Margin="30 0 8 -1" />
111111
<ui:TextBlock Text="{Binding TotalFiles, Converter={StaticResource NumberWithSpacesConverter}}" FontSize="20" VerticalAlignment="Bottom"/>

0 commit comments

Comments
 (0)