Skip to content

Commit

Permalink
fixes&color for patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Pennykoin committed Sep 8, 2018
1 parent b321b54 commit 7c53eac
Show file tree
Hide file tree
Showing 7 changed files with 3,378 additions and 14 deletions.
4 changes: 2 additions & 2 deletions src/Settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void Settings::load() {

QStringList defaultPoolList;
//defaultPoolList << "xdn.miner.center:4555" << "duckpool.mooo.com:2222" << "xdn.poolto.be:11010";
defaultPoolList << "0.0.0.0:4333";
defaultPoolList << "pool.pennykoin.com:3333";
if (!m_settings.contains(OPTION_MINING_POOLS)) {
setMiningPoolList(QStringList() << defaultPoolList);
} else {
Expand Down Expand Up @@ -194,7 +194,7 @@ bool Settings::isStartOnLoginEnabled() const {

#ifdef Q_OS_WIN
bool Settings::isMinimizeToTrayEnabled() const {
return m_settings.contains("minimizeToTray") ? m_settings.value("minimizeToTray").toBool() : false;
return m_settings.contains("minimizeToTray") ? m_settings.value("minimizeToTray").toBool() : true;
}

bool Settings::isCloseToTrayEnabled() const {
Expand Down
4 changes: 2 additions & 2 deletions src/gui/ui/aboutdialog.ui
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@
</sizepolicy>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Pennykoin wallet version %1&lt;/p&gt;&lt;p&gt;Pennykoin is a private cryptocurrency and encrypted messaging system.&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://opensource.org/licenses/MIT&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://opensource.org/licenses/MIT&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://pennykoin.com/&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://PENNYKOIN.COM/&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
<string>Pennykoin is a free to use, opensource currency project. Anyone is welcome to contribute and become a part of the movement. Pennykoin.com</string>
</property>
<property name="textFormat">
<enum>Qt::RichText</enum>
<enum>Qt::PlainText</enum>
</property>
<property name="wordWrap">
<bool>true</bool>
Expand Down
Loading

0 comments on commit 7c53eac

Please sign in to comment.