Browse Source

Fix ICO type problem

doc-issue-template
MrS0m30n3 10 years ago
parent
commit
e39270aaf2
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl_gui/YoutubeDLGUI.py

2
youtube_dl_gui/YoutubeDLGUI.py

@ -1199,7 +1199,7 @@ class GeneralPanel(wx.Panel):
def OnAbout(self, event): def OnAbout(self, event):
info = wx.AboutDialogInfo() info = wx.AboutDialogInfo()
info.SetIcon(wx.Icon(ICON, wx.BITMAP_TYPE_ICO))
info.SetIcon(wx.Icon(ICON, wx.BITMAP_TYPE_PNG))
info.SetName(__appname__) info.SetName(__appname__)
info.SetVersion(__version__) info.SetVersion(__version__)
info.SetDescription(__descriptionfull__) info.SetDescription(__descriptionfull__)

Loading…
Cancel
Save