Skip to content

Commit

Permalink
add support for missing wallpaper formats #872
Browse files Browse the repository at this point in the history
"|*.jpg; *.jpeg; *.bmp; *.dib; *.png; *.jff; *.jpe; *.gif; *.tif; *.tiff; *.wdp; *.heic; *.heif; *.heics; *.heifs; *.hif; *.avci; *.avcs; *.avif; *.avifs; *.jxr; *.jxl"
  • Loading branch information
Spiritreader committed Oct 2, 2024
1 parent 1905faf commit b7753b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AutoDarkModeApp/Pages/PageWallpaperPicker.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ private void ButtonFilePicker_Click(object sender, RoutedEventArgs e)
{
OpenFileDialog ofd = new()
{
Filter = AdmProperties.Resources.dbPictures + "|*.png; *.jpg; *.jpeg; *.bmp",
Filter = AdmProperties.Resources.dbPictures + "|*.jpg; *.jpeg; *.bmp; *.dib; *.png; *.jff; *.jpe; *.gif; *.tif; *.tiff; *.wdp; *.heic; *.heif; *.heics; *.heifs; *.hif; *.avci; *.avcs; *.avif; *.avifs; *.jxr; *.jxl",
InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.MyPictures)
};
bool? result = ofd.ShowDialog();
Expand Down

0 comments on commit b7753b9

Please sign in to comment.