Skip to content

Commit

Permalink
Try disabling the font previews to fix bug #696293.
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronwhite committed Sep 25, 2012
1 parent a78f47b commit 7f45129
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Pinta.Core/Extensions/ToolBarFontComboBox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ private void RenderFont (CellLayout layout, CellRenderer renderer, TreeModel mod
CellRendererText cell = renderer as CellRendererText;

cell.Text = fontName;
cell.Font = string.Format ("{0} 10", fontName);
cell.Family = fontName;
if (PintaCore.System.OperatingSystem != OS.Mac) {
cell.Font = string.Format ("{0} 10", fontName);
cell.Family = fontName;
}
}
}
}

0 comments on commit 7f45129

Please sign in to comment.