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:
Robert Fewell 2020-06-26 15:24:46 +01:00
parent af51e737e7
commit 47f0959f46

View File

@ -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
}