mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-12-23 12:09:57 +00:00
FontAwesome: bump to 5.10.2
This commit is contained in:
parent
562c46660a
commit
cb9cb6eb09
7 changed files with 17 additions and 3 deletions
|
@ -4,10 +4,22 @@ import QtQuick 2.9
|
||||||
Object {
|
Object {
|
||||||
|
|
||||||
FontLoader {
|
FontLoader {
|
||||||
source: "./fontawesome-webfont.ttf"
|
source: "./fa-regular-400.ttf"
|
||||||
|
}
|
||||||
|
|
||||||
|
FontLoader {
|
||||||
|
id: brands
|
||||||
|
source: "./fa-brands-400.ttf"
|
||||||
|
}
|
||||||
|
|
||||||
|
FontLoader {
|
||||||
|
id: solid
|
||||||
|
source: "./fa-solid-900.ttf"
|
||||||
}
|
}
|
||||||
|
|
||||||
property string fontFamily: "FontAwesome"
|
property string fontFamily: "FontAwesome"
|
||||||
|
property string fontFamilyBrands: brands.name
|
||||||
|
property string fontFamilySolid: solid.name
|
||||||
|
|
||||||
// Icons
|
// Icons
|
||||||
property string addressBook : "\uf2b9"
|
property string addressBook : "\uf2b9"
|
||||||
|
|
BIN
fonts/FontAwesome/fa-brands-400.ttf
Normal file
BIN
fonts/FontAwesome/fa-brands-400.ttf
Normal file
Binary file not shown.
BIN
fonts/FontAwesome/fa-regular-400.ttf
Normal file
BIN
fonts/FontAwesome/fa-regular-400.ttf
Normal file
Binary file not shown.
BIN
fonts/FontAwesome/fa-solid-900.ttf
Normal file
BIN
fonts/FontAwesome/fa-solid-900.ttf
Normal file
Binary file not shown.
Binary file not shown.
|
@ -939,7 +939,7 @@ Rectangle {
|
||||||
anchors.leftMargin: 10
|
anchors.leftMargin: 10
|
||||||
text: FontAwesome.productHunt
|
text: FontAwesome.productHunt
|
||||||
small: true
|
small: true
|
||||||
label.font.family: FontAwesome.fontFamily
|
label.font.family: FontAwesome.fontFamilyBrands
|
||||||
fontSize: 18
|
fontSize: 18
|
||||||
width: 36
|
width: 36
|
||||||
|
|
||||||
|
|
4
qml.qrc
4
qml.qrc
|
@ -180,7 +180,9 @@
|
||||||
<file>images/merchant/arrow_right.png</file>
|
<file>images/merchant/arrow_right.png</file>
|
||||||
<file>images/merchant/bg.png</file>
|
<file>images/merchant/bg.png</file>
|
||||||
<file>images/merchant/input_box.png</file>
|
<file>images/merchant/input_box.png</file>
|
||||||
<file>fonts/FontAwesome/fontawesome-webfont.ttf</file>
|
<file>fonts/FontAwesome/fa-brands-400.ttf</file>
|
||||||
|
<file>fonts/FontAwesome/fa-regular-400.ttf</file>
|
||||||
|
<file>fonts/FontAwesome/fa-solid-900.ttf</file>
|
||||||
<file>fonts/FontAwesome/FontAwesome.qml</file>
|
<file>fonts/FontAwesome/FontAwesome.qml</file>
|
||||||
<file>fonts/FontAwesome/Object.qml</file>
|
<file>fonts/FontAwesome/Object.qml</file>
|
||||||
<file>fonts/FontAwesome/qmldir</file>
|
<file>fonts/FontAwesome/qmldir</file>
|
||||||
|
|
Loading…
Reference in a new issue