mirror of
https://github.com/LBPUnion/UnionPatcher.git
synced 2025-04-25 14:05:18 +00:00
Fix file wildcard patterns
This commit is contained in:
parent
7299e99e7d
commit
3ba16024b2
1 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ public class FilePatchForm : Form {
|
|||
Rows = {
|
||||
new TableRow(
|
||||
new TableCell(new Label { Text = "EBOOT.elf: ", VerticalAlignment = VerticalAlignment.Center }),
|
||||
new TableCell(this.filePicker = new FilePicker { TabIndex = 0 , FileAction = FileAction.OpenFile, Filters = { new FileFilter("ELF files", ".elf", ".ELF"), new FileFilter("All Files", ".*") }})
|
||||
new TableCell(this.filePicker = new FilePicker { TabIndex = 0 , FileAction = FileAction.OpenFile, Filters = { new FileFilter("ELF files", "*.elf", "*.ELF"), new FileFilter("All Files", "*.*") }})
|
||||
),
|
||||
new TableRow(
|
||||
new TableCell(new Label { Text = "Server URL: ", VerticalAlignment = VerticalAlignment.Center }),
|
||||
|
@ -57,7 +57,7 @@ public class FilePatchForm : Form {
|
|||
),
|
||||
new TableRow(
|
||||
new TableCell(new Label { Text = "Output filename: ", VerticalAlignment = VerticalAlignment.Center }),
|
||||
new TableCell(this.outputFileName = new FilePicker { TabIndex = 2, FileAction = FileAction.SaveFile, Filters = { new FileFilter("ELF files", ".elf", ".ELF"), new FileFilter("All Files", ".*") }})
|
||||
new TableCell(this.outputFileName = new FilePicker { TabIndex = 2, FileAction = FileAction.SaveFile, Filters = { new FileFilter("ELF files", "*.elf", "*.ELF"), new FileFilter("All Files", "*.*") }})
|
||||
),
|
||||
new TableRow(
|
||||
new TableCell(this.CreateHelpButton(4)),
|
||||
|
|
Loading…
Add table
Reference in a new issue