icons
This commit is contained in:
@@ -226,28 +226,32 @@ class ElectrumWindow(QMainWindow):
|
||||
sb = QStatusBar()
|
||||
sb.setFixedHeight(30)
|
||||
|
||||
icon = QIcon("icons/gtk-apply.svg")
|
||||
icon = QIcon("icons/lock.svg")
|
||||
b = QPushButton( icon, '' )
|
||||
b.setToolTip("Password")
|
||||
b.setFlat(True)
|
||||
b.setMaximumWidth(20)
|
||||
b.setMaximumWidth(25)
|
||||
sb.addPermanentWidget(b)
|
||||
|
||||
icon = QIcon("icons/gtk-apply.svg")
|
||||
icon = QIcon("icons/preferences.svg")
|
||||
b = QPushButton( icon, '' )
|
||||
b.setToolTip("Preferences")
|
||||
b.setFlat(True)
|
||||
b.setMaximumWidth(20)
|
||||
b.setMaximumWidth(25)
|
||||
sb.addPermanentWidget(b)
|
||||
|
||||
icon = QIcon("icons/gtk-apply.svg")
|
||||
icon = QIcon("icons/seed.png")
|
||||
b = QPushButton( icon, '' )
|
||||
b.setToolTip("Seed")
|
||||
b.setFlat(True)
|
||||
b.setMaximumWidth(20)
|
||||
b.setMaximumWidth(25)
|
||||
sb.addPermanentWidget(b)
|
||||
|
||||
icon = QIcon("icons/gtk-apply.svg")
|
||||
icon = QIcon("icons/status_disconnected.svg")
|
||||
b = QPushButton( icon, '' )
|
||||
b.setToolTip("Network")
|
||||
b.setFlat(True)
|
||||
b.setMaximumWidth(20)
|
||||
b.setMaximumWidth(25)
|
||||
sb.addPermanentWidget(b)
|
||||
|
||||
self.setStatusBar(sb)
|
||||
|
||||
Reference in New Issue
Block a user