electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 68cd37282eef863befdd369e5a3957e2c1852bee
parent 9e58d56e6db4266440bf80ad27289c94b55f2083
Author: SomberNight <somber.night@protonmail.com>
Date:   Mon,  4 Feb 2019 18:07:14 +0100

qt: set default "window icon" (only visible on Windows)

Diffstat:
Melectrum/gui/qt/__init__.py | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/electrum/gui/qt/__init__.py b/electrum/gui/qt/__init__.py @@ -97,6 +97,7 @@ class ElectrumGui(PrintError): self.efilter = OpenFileEventFilter(self.windows) self.app = QElectrumApplication(sys.argv) self.app.installEventFilter(self.efilter) + self.app.setWindowIcon(read_QIcon("electrum.png")) # timer self.timer = QTimer(self.app) self.timer.setSingleShot(False)