Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CompactGUI/Application.xaml.vb
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ Partial Public Class Application
End Using
End Using
Else
MessageBox.Show("An instance of CompactGUI is already running")
MessageBox.Show(CompactGUI.i18n.i18n.Message_RunTwoPrograms)
End If
Current.Shutdown()
End Sub
Expand Down
7 changes: 4 additions & 3 deletions CompactGUI/Views/Components/FolderWatcherCard.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,9 @@
Text="{local:Localize UniAdd}" />
</StackPanel>
<Button.ToolTip>
<ToolTip ToolTipService.InitialShowDelay="100">
<TextBlock d:Text="Add a custom folder to the watchlist" FontSize="12" Foreground="#FFBFC7CE"
<ToolTip ToolTipService.InitialShowDelay="100" Width="Auto" MaxWidth="Infinity">
<TextBlock d:Text="Add a custom folder to the watchlist"
FontSize="12" Foreground="#FFBFC7CE"
Text="{local:Localize Watcher_AddTip}"
TextWrapping="NoWrap" />
</ToolTip>
Expand Down Expand Up @@ -97,7 +98,7 @@

<ui:SymbolIcon FontSize="18" Symbol="ArrowClockwiseDashes24" />
<ui:Button.ToolTip>
<ToolTip ToolTipService.InitialShowDelay="100">
<ToolTip ToolTipService.InitialShowDelay="100" Width="Auto" MaxWidth="Infinity">
<TextBlock d:Text="Re-analyse all watched folders" FontSize="12" Foreground="#FFBFC7CE"
Text="{local:Localize Watcher_ReAnalyse}"
TextWrapping="NoWrap" />
Expand Down
4 changes: 2 additions & 2 deletions CompactGUI/Views/Pages/HomePage.xaml.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Class HomePage
Class HomePage

Private _viewModel As HomeViewModel

Expand All @@ -18,7 +18,7 @@

Private Async Sub AddFolderButton_Click(sender As Object, e As RoutedEventArgs) Handles BtnAddFolder1.Click, BtnAddFolder2.Click
Dim folderBrowser As New Microsoft.Win32.OpenFolderDialog With {
.Title = "Select a folder to compress",
.Title = CompactGUI.i18n.i18n.Home_SelectFolderSysteam,
.Multiselect = True,
.ValidateNames = True
}
Expand Down
9 changes: 5 additions & 4 deletions CompactGUI/Views/SettingsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@
<Grid Margin="0 10 0 0">

<Grid.ColumnDefinitions>
<ColumnDefinition Width="250" />
<ColumnDefinition Width="200" />
<ColumnDefinition Width="Auto" MinWidth="250" />
<ColumnDefinition Width="Auto" MinWidth="200" />

</Grid.ColumnDefinitions>

Expand Down Expand Up @@ -299,8 +299,9 @@
IsChecked="{Binding AppSettings.EstimateCompressionForNonSteamFolders}">
<CheckBox.ToolTip>
<ToolTip Placement="Top">
<TextBlock Width="200"
Text="Quickly parses over files and estimates their compression ratio without writing to disk. This will likely be super laggy on HDDs! " TextAlignment="Left" TextWrapping="Wrap" />
<TextBlock x:Name="UiUseEstimatorTip"
Text="{local:Localize SetCompression_NonSteamFoldersTip}"
d:Text="Quickly parses over files and estimates their compression ratio without writing to disk. This will likely be super laggy on HDDs! " TextAlignment="Left" TextWrapping="Wrap" />
</ToolTip>
</CheckBox.ToolTip>
</CheckBox>
Expand Down
Loading