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. * The individual glyphs offered by the FontAwesome5 font.
*/ */
public static enum Glyph implements INamedCharacter { public static enum Glyph implements INamedCharacter {
ARROW_CIRCLE_DOWN('\uf0ab'),
ANGLE_DOUBLE_RIGHT('\uf101'), ANGLE_DOUBLE_RIGHT('\uf101'),
ARROW_DOWN('\uf063'), ARROW_DOWN('\uf063'),
ARROW_UP('\uf062'), ARROW_UP('\uf062'),

View file

@ -41,10 +41,13 @@
</Field> </Field>
<Field text="Transactions:"> <Field text="Transactions:">
<CopyableLabel fx:id="transactionCount" /> <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> <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> </graphic>
<tooltip>
<Tooltip text="Export transactions as CSV" />
</tooltip>
</Button> </Button>
</Field> </Field>
</Fieldset> </Fieldset>