mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Fix EmScale initialization, pixel-sizes are unsigned int
This commit is contained in:
parent
1a95595e3d
commit
8dd89616e1
1 changed files with 3 additions and 3 deletions
|
|
@ -30,9 +30,9 @@ std::map<std::string,EmScale> EmScale::_emscales;
|
||||||
|
|
||||||
EmScale::EmScale (const Pango::FontDescription& fd)
|
EmScale::EmScale (const Pango::FontDescription& fd)
|
||||||
: _font (fd)
|
: _font (fd)
|
||||||
, _char_pixel_width (-1)
|
, _char_pixel_width (0)
|
||||||
, _char_pixel_height (-1)
|
, _char_pixel_height (0)
|
||||||
, _char_avg_pixel_width (-1)
|
, _char_avg_pixel_width (0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue