Browse Source

Hush logo on startup, finally

pull/45/head
Jonathan "Duke" Leto 5 years ago
parent
commit
5e3a96ba36
  1. BIN
      res/logobig.gif
  2. 4
      src/connection.cpp
  3. 4
      src/connection.ui

BIN
res/logobig.gif

Binary file not shown.

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 12 KiB

4
src/connection.cpp

@ -17,7 +17,7 @@ ConnectionLoader::ConnectionLoader(MainWindow* main, RPC* rpc) {
connD = new Ui_ConnectionDialog();
connD->setupUi(d);
QPixmap logo(":/img/res/logobig.gif");
connD->topIcon->setBasePixmap(logo.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation));
connD->topIcon->setBasePixmap(logo.scaled(512, 512, Qt::KeepAspectRatio, Qt::SmoothTransformation));
}
ConnectionLoader::~ConnectionLoader() {
@ -137,7 +137,7 @@ void ConnectionLoader::createZcashConf() {
ui.setupUi(&d);
QPixmap logo(":/img/res/zcashdlogo.gif");
ui.lblTopIcon->setBasePixmap(logo.scaled(256, 256, Qt::KeepAspectRatio, Qt::SmoothTransformation));
ui.lblTopIcon->setBasePixmap(logo.scaled(512,512, Qt::KeepAspectRatio, Qt::SmoothTransformation));
ui.btnPickDir->setEnabled(false);
ui.grpAdvanced->setVisible(false);

4
src/connection.ui

@ -10,7 +10,7 @@
<x>0</x>
<y>0</y>
<width>513</width>
<height>201</height>
<height>513</height>
</rect>
</property>
<property name="windowTitle">
@ -55,7 +55,7 @@
<item>
<widget class="QLabel" name="status">
<property name="text">
<string>Starting Up</string>
<string>The Dragon Awakens...</string>
</property>
<property name="alignment">
<set>Qt::AlignCenter</set>

Loading…
Cancel
Save