Fix icon path

This commit is contained in:
Micah Lee 2020-03-02 21:11:54 -08:00
parent bb68430db5
commit 322416eee8
No known key found for this signature in database
GPG key ID: 403C2657CD994F73

View file

@ -272,7 +272,7 @@ class GlobalCommon(object):
if platform.system() == "Windows": if platform.system() == "Windows":
path = self.get_resource_path("dangerzone.ico") path = self.get_resource_path("dangerzone.ico")
else: else:
path = self.get_resource_path("logo.png") path = self.get_resource_path("icon.png")
return QtGui.QIcon(path) return QtGui.QIcon(path)
def open_pdf_viewer(self, filename): def open_pdf_viewer(self, filename):