change export csv icon

This commit is contained in:
Craig Raw 2021-02-17 11:18:29 +02:00
parent 173078dd8d
commit 9b6ef1f3ca
2 changed files with 6 additions and 2 deletions

View file

@ -15,6 +15,7 @@ public class FontAwesome5 extends GlyphFont {
* The individual glyphs offered by the FontAwesome5 font.
*/
public static enum Glyph implements INamedCharacter {
ARROW_CIRCLE_DOWN('\uf0ab'),
ANGLE_DOUBLE_RIGHT('\uf101'),
ARROW_DOWN('\uf063'),
ARROW_UP('\uf062'),

View file

@ -41,10 +41,13 @@
</Field>
<Field text="Transactions:">
<CopyableLabel fx:id="transactionCount" />
<Button fx:id="exportCsv" maxHeight="25" onAction="#exportCSV" translateY="-2">
<Button fx:id="exportCsv" maxHeight="25" onAction="#exportCSV" translateY="-1">
<graphic>
<Glyph fontFamily="Font Awesome 5 Free Solid" icon="FILE_CSV" fontSize="14" />
<Glyph fontFamily="Font Awesome 5 Free Solid" icon="ARROW_CIRCLE_DOWN" fontSize="12" />
</graphic>
<tooltip>
<Tooltip text="Export transactions as CSV" />
</tooltip>
</Button>
</Field>
</Fieldset>