Skip to content

Commit

Permalink
Поддержка *.otf в окне выбора файлов
Browse files Browse the repository at this point in the history
  • Loading branch information
xrSimpodin committed Mar 26, 2024
1 parent b99588b commit 71db5c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _sources/FontGen/FontGenForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -825,7 +825,7 @@ private void btnCustomFont_Click(object sender, EventArgs e)
{
using (OpenFileDialog fd = new OpenFileDialog())
{
fd.Filter = "(*.ttf)|*.ttf";
fd.Filter = "Fonts (*.ttf;*.otf)|*.ttf;*.otf" + "|All files (*.*)|*.*";

if (fd.ShowDialog() == DialogResult.OK)
{
Expand Down

0 comments on commit 71db5c0

Please sign in to comment.