mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
Disable showing glyphs for associations on MacOS
Currently there are problems showing glyphs on MacOS so always return FALSE for the gcn_assoc_cell_set_use_glyphs for MacOS
This commit is contained in:
parent
af51e737e7
commit
47f0959f46
@ -263,6 +263,9 @@ gnc_assoc_cell_set_read_only (AssocCell *cell, gboolean read_only)
|
||||
void
|
||||
gnc_assoc_cell_set_use_glyphs (AssocCell *cell)
|
||||
{
|
||||
#ifdef MAC_INTEGRATION
|
||||
cell->use_glyphs = FALSE;
|
||||
#else
|
||||
gboolean use_glyphs = TRUE;
|
||||
gchar *test_text;
|
||||
GtkWidget *label;
|
||||
@ -286,4 +289,5 @@ gnc_assoc_cell_set_use_glyphs (AssocCell *cell)
|
||||
g_free (test_text);
|
||||
|
||||
cell->use_glyphs = use_glyphs;
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user