Merge pull request 'Prices: add support for AUD' (#35) from tobtoht/feather:cur_aud into master

Reviewed-on: https://git.wownero.com/feather/feather/pulls/35
This commit is contained in:
tobtoht 2020-10-11 01:26:25 +00:00
commit 3f9080332b
3 changed files with 11 additions and 0 deletions

View File

@ -136,6 +136,11 @@
<string>RMB</string>
</property>
</item>
<item>
<property name="text">
<string>AUD</string>
</property>
</item>
</widget>
</item>
</layout>

View File

@ -53,6 +53,11 @@
<string>GBP</string>
</property>
</item>
<item>
<property name="text">
<string>AUD</string>
</property>
</item>
<item>
<property name="text">
<string>CAD</string>

View File

@ -27,6 +27,7 @@ Prices::Prices(QObject *parent) : QObject(parent) {
fiat["CHF"] = "Fr";
fiat["CNY"] = "¥";
fiat["CZK"] = "";
fiat["AUD"] = "$";
}
void Prices::cryptoPricesReceived(const QJsonArray &data) {