From e39270aaf2798197664d3ccd0728cbc45b840a7d Mon Sep 17 00:00:00 2001 From: MrS0m30n3 Date: Thu, 15 May 2014 20:06:24 +0300 Subject: [PATCH] Fix ICO type problem --- youtube_dl_gui/YoutubeDLGUI.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl_gui/YoutubeDLGUI.py b/youtube_dl_gui/YoutubeDLGUI.py index 59f52ae..72b7a47 100644 --- a/youtube_dl_gui/YoutubeDLGUI.py +++ b/youtube_dl_gui/YoutubeDLGUI.py @@ -1199,7 +1199,7 @@ class GeneralPanel(wx.Panel): def OnAbout(self, event): 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.SetVersion(__version__) info.SetDescription(__descriptionfull__)