8000 Mixing Arial with mathtext on Windows 8 fails by mdboom · Pull Request #1710 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Mixing Arial with mathtext on Windows 8 fails #1710

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 29, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix for Python 3
  • Loading branch information
mdboom committed Jan 28, 2013
commit d5710a48f80df0ba0e96c6575635a04cb8480062
2 changes: 1 addition & 1 deletion src/ft2font.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1617,7 +1617,7 @@ FT2Font::get_glyph_name(const Py::Tuple & args)
args.verify_length(1);

char buffer[128];
FT_UInt glyph_number = Py::Int(args[0]);
FT_UInt glyph_number = (FT_UInt)(unsigned long long)Py::Int(args[0]);

if (!FT_HAS_GLYPH_NAMES(face))
{
Expand Down
0