(GYU): handle enctypted images with non-numeric filenames.

This commit is contained in:
morkt
2018-08-20 14:49:45 +04:00
parent 50ca23ec03
commit 6e5c60ee2c
3 changed files with 38 additions and 28 deletions

View File

@@ -1,4 +1,5 @@
using System.Windows.Controls;
using System.Collections.Generic;
using System.Windows.Controls;
namespace GameRes.Formats.GUI
{
@@ -7,9 +8,10 @@ namespace GameRes.Formats.GUI
/// </summary>
public partial class WidgetGYU : StackPanel
{
public WidgetGYU()
public WidgetGYU (IEnumerable<string> titles)
{
InitializeComponent();
Title.ItemsSource = titles;
}
}
}