Browse Source

Add missing icon on options panel

doc-issue-template
MrS0m30n3 10 years ago
parent
commit
a2a0d6fb49
2 changed files with 5 additions and 1 deletions
  1. 1
      ToDo
  2. 5
      youtube_dl_gui/OptionsFrame.py

1
ToDo

@ -1,4 +1,3 @@
* Add missing icon on options frame
* Refactor my ugly code
* Redesign options window

5
youtube_dl_gui/OptionsFrame.py

@ -128,6 +128,11 @@ class OptionsFrame(wx.Frame):
self.opt_manager = opt_manager
# Add icon
icon = get_icon_path()
if icon is not None:
self.SetIcon(wx.Icon(icon, wx.BITMAP_TYPE_PNG))
# Create GUI
panel = wx.Panel(self)
notebook = wx.Notebook(panel)

Loading…
Cancel
Save