Fix break background file picker title

This commit is contained in:
Jaime Bernardo 2024-10-08 12:49:50 +01:00
parent 2fd9be8603
commit 9a0054ecb9
2 changed files with 4 additions and 1 deletions

View File

@ -4486,6 +4486,9 @@ Change the break timer color using the same keys that the drawing color. The bre
<data name="ZoomIt_Break_BackgroundFile_BrowseButton.Content" xml:space="preserve">
<value>Browse</value>
</data>
<data name="ZoomIt_Break_BackgroundFile_Picker_Dialog_Title" xml:space="preserve">
<value>Specify background file...</value>
</data>
<data name="FilePicker_ZoomIt_BitmapFilesFilter" xml:space="preserve">
<value>Bitmap Files</value>
</data>

View File

@ -570,7 +570,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
try
{
ResourceLoader resourceLoader = ResourceLoaderInstance.ResourceLoader;
string title = resourceLoader.GetString("ZoomIt_Break_SoundFile_Picker_Dialog_Title");
string title = resourceLoader.GetString("ZoomIt_Break_BackgroundFile_Picker_Dialog_Title");
string bitmapFilesFilter = resourceLoader.GetString("FilePicker_ZoomIt_BitmapFilesFilter");
string allPictureFilesFilter = resourceLoader.GetString("FilePicker_ZoomIt_AllPicturesFilter");
string allFilesFilter = resourceLoader.GetString("FilePicker_AllFilesFilter");