Содержание
- Unable to Use Custom Fonts Windows 10 #1608
- Comments
- Issue or Feature
- Steps to Reproduce
- Your Environment
- Error
- Steps to Reproduce
- Environment
- Error with PANGO_WIN32_DEBUG flag
Unable to Use Custom Fonts Windows 10 #1608
Issue or Feature
I have exhausted every guide on the web. I am currently unable to use any custom font on Windows 10.
Error message: Pango-WARNING **: 12:15:05.151: couldn’t load font «Roboto Light Not-Rotated 25px», falling back to «Sans Light Not-Rotated 25px», expect ugly output.
Steps to Reproduce
Your Environment
- Version of node-canvas (output of npm list canvas or yarn list canvas ):
- Environment (e.g. node 4.2.0 on Mac OS X 10.8):
Node v14.4.0 on Windows 10 x64
Canvas v2.6.1
The text was updated successfully, but these errors were encountered:
That error happens when the family wasn’t listed by Windows (specifically EnumFontFamiliesExW ). I don’t have Windows but I suspect that I wouldn’t be able to repro since that’s a pretty big failure that (I hope) we would have heard of. So it might be some specific font setting in your system.
Could you set the environment variable PANGO_WIN32_DEBUG=true and run your example again, then paste the output?
Can reproduce, with a different font.
Error
Steps to Reproduce
Environment
- Version of node-canvas (output of npm list canvas or yarn list canvas ): v2.6.1
- Environment (e.g. node 4.2.0 on Mac OS X 10.8): node v12.17.0 on Windows 10 Pro x64 (1909)
Error with PANGO_WIN32_DEBUG flag
I’m having the same issue. Is this gonna be fixed at some point?
Nevermind, I got it working.
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file.
It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
You probably should install the ttf files.
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file. It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
thanks, it works for me
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file. It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
This is sort of a «me too.» I was trying to use a custom font on Windows and was having no luck. I was seeing the same error message. We have a number of variations of our custom font and the only one I can get to work is the one with an internal font name having no spaces or hyphens. (Hint to Windows users: Right click on the font in Windows Explorer and Preview will show you the font.)
When I try to use Foo-variation or Foo variation2 , the message from Pango only mentions the «root» part of the name:
I don’t know if that will help someone fix this, but I too am in business now (finally). Thanks, @HeCorr!
Источник
Pango-WARNING couldn’t load font #48
Comments
Shoes unveils a series of warnings emitted by Pango library on Windows.
(cshoes.exe:2456): Pango-WARNING **: couldn’t load font «Lacuna Not-Rotated 17.3
33984375px», falling back to «Sans Not-Rotated 17.333984375px», expect ugly outp
ut.
- MacOS X and Linux version have a launch script handling Pango dynamic setup.
- Includes pangorc, pango.modules, pango-querymodules files.
- Windows version doesn’t need all the DLLs required by Pango, so those are not included.
- Windows version might need setting up Pango at installation time in https://github.com/Shoes3/shoes3/blob/master/platform/msw/base.nsi.
TESTING LACUNA FONT
_CONSOLE OUTPUT_
(shoes.exe:9868): Pango-WARNING **: couldn’t load font «Lacuna Not-Rotated 16.0009765625px», falling back to «Sans Not-Rotated 16.0009765625px», expect ugly output.
_RENDERING_
The rendering seems to work despite the warning.
The text was updated successfully, but these errors were encountered:
Shoes::FONTS is empty when starting a new Shoes app on Windows whereas there are 492 fonts available in the MacOS X version.
Shoes font loading is a separate step from the graphical tool kit init. The old msw native windows code had a way to load them. For example, OSX 10.6 and 10.9 have two different native api’s. that Shoes can be compiled for. For Windows gtk, we need the old msw code that iterates through the fonts and then presents font info in a way Gtk2 Pango/Cairo is happy with. If we can do that then we can dump fontconfig.dll, font.conf and friends on Windows. That should (he hopes) make the Pango Lucuna error messages go away as well.
@backorder , that would be bad news if we have to run pango-querymodules. cshoes.bat? shoes.bat
Isn’t pango-querymodules a run-once thing? We can manage that from NSIS.
Good observation. I’m used to the linux/osx handling where it runs every Shoes time. You should have pango-querymodules.exe in the gtk bundle bin/ if you want to try it.
There is no Pango DLL modules on the Windows build. That would be something needed before calling pango-querymodules.
There are no pango.modules on some Linux either or the names have been changed to protect the innocent! Also it appears that Shoes/linux doesn’t do the pango-querymodules dance (just OSX) so I’d prefer we not add the dance to Windows if we don’t have to.
Your sandbox/share/ has the pango manual in html and more. In particular win32 calls to manage fonts.
We know that Shoes is perfectly happy with the fonts, and fontconfig is primarily used to build the Shoes font list (and perhaps thats all it does). Only gtk/windows/pango complains about those two fonts. Research and deep thought is needed.
Perhaps NSIS can install the two fonts and Shoes/Windows doesn’t issue load them from loose files?
Perhaps Shoes/gtk.s should not call the the Linux centric code and call the win32 centric code to find and build the the internal font.
The question is what are the Pango modules for? From Pango website:
Dynamically loaded modules then handle text layout for particular combinations of script and font backend. Pango ships with a wide selection of modules, including modules for Hebrew, Arabic, Hangul, Thai, and a number of Indic scripts. Virtually all of the world’s major scripts are supported.
My understanding is that Shoes for all platforms may not properly support fonts localization. Even on MacOS X, there would be some modules missing (as seen on stackoverflow). This would be a separate issue to file.
We know that Shoes is perfectly happy with the fonts, and fontconfig is primarily used to build the Shoes font list (and perhaps thats all it does). Only gtk/windows/pango complains about those two fonts. Research and deep thought is needed.
The Pango manual says either one can be used — fontconfig or win32 fonts api. This might be a case where win32 is a winner when it comes to runtime speed but fontconfig is already implemented and running fc-cache using NSIS might cut it, speed afterwards will be matched.
Perhaps NSIS can install the two fonts and Shoes/Windows doesn’t issue load them from loose files? Perhaps Shoes/gtk.s should not call the the Linux centric code and call the win32 centric code to find and build the the internal font.
Installing the fonts wouldn’t solve the problem. Normal Windows applications would install the fonts but it acceptable for an open source software to have its own fonts directory. Also, it serves as an example to Shoes programmers on how to load non-system fonts.
The Pango message handler from stackoverflow should tell us the exact reason for these errors. Then we can figure out what to do next.
Источник
Unicode directory path not supported ошибка в CS:GO как исправить
Команда разработчиков Valve решила превзойти ранее созданную игру Counter-Strike и выпустила в свет новый продукт — Counter Strike: Global Offensive. Как и прежние версии разрабатывалась для сетевой игры. За основу был взят движок ранее созданной CS Source. При выходе нового шутера успех превзошел все ожидания. Сегодня в неё играют на международных турнирах. Но у некоторых пользователей при запуске возникает ошибка: «Unicode directory path not supported» в CS:GO. Как исправить её — читайте далее.
Причина ошибки при открытии КС:ГО
На самом деле у этой ошибки всего одна причина и её достаточно просто устранить. Дело в том, что пользователь установил игру в папку или директорию, которая названа именем на русском языке. Для её исправления необходимо переименовать папку и перезапустить игру. Будут также рассмотрены дополнительные варианты, если простым переименованием никакого результата добиться не получилось.
Устраняем ошибку Unicode directory path not supported в CS:GO
Найдите место расположения файлов игры на вашем компьютере. Если вы не знаете, где она находится, попробуйте воспользоваться поиском.
- Откройте проводник (WIN+E) и выберите один из локальных дисков;
- Введите название игры, в нашем случае это «CS:GO» в поле поиска вверху справа;Win
- Если ни в одном из папок нет игры, попробуйте написать полное имя игры;
- Когда вы найдете папку, откройте её и обратите внимание на поле адреса вверху папки. В нем найдите папку, название которой написано русскими буквами и выберите её прямо из строки адреса;
- Вернитесь на шаг назад, чтобы вы могли видеть папку и её имя и нажмите по ней ПКМ, выбрав пункт «Переименовать»;
После этих действий откройте игру, чтобы проверить, появляется ли ошибка. Если вам удалось её исправить, не забудьте вернуться на эту страницу и поблагодарить администратора сайта в комментариях.
Дополнительно нужно проверить целостность файлов игры на вашем компьютере при помощи онлайн утилиты от разработчиков Steam. Это позволит убедиться в том, что файлы игры не нарушены и вам не придется загружать пакет с игрой и переустанавливать его заново.
- Запустите клиент Steam и перейдите к списку установленных на компьютер игр с библиотеки;
- Нажмите ПКМ на игре CS:GO и выберите пункт «Свойства»;
Откройте утилиту проверки локальных данных в Steam
Нажмите вверху вкладку «Локальные файлы» и выберите последний пункт «Проверить файлы…».
Процесс может занять некоторое время. Но вам необходимо дождаться его завершения и не разрывать связь с интернетом.
Проверка драйвера видеокарты
Если ошибку решить предыдущим методом не удалось, проверьте, установлен ли драйвер видеоадаптера. Делается это в диспетчере устройств. Для быстрого открытия нажмите вместе WIN+PAUSE и выберите его в левом блоке.
- Найдите в списке устройств «Видеоадаптеры». Укажите на него и выберите ПКМ вашу видеокарту;
- Нажмите на пункт «Обновить драйверы»;
Для устройств всегда приоритетнее использовать компакт-диск с драйвером, если он у вас есть. Найдите его в документации к видеокарте, вставьте в привод и установите необходимое ПО. Актуальные драйверы вы можете найти на официальных сайтах разработчиков. На сегодняшний день их всего 2: nVidia и AMD. Узнайте модель своего устройства и введите в поисковике запрос, например, «официальный сайт AMD». В разделе поддержки найдите свою модель.
Блокирование файлов игры антивирусами
Очень часто антивирусные системы блокируют игры и программы по неизвестным причинам, находя в них подозрительный файл. Из-за того, что антивирус не дает запускаться тому или иному коду игры, она не может правильно работать и вы видите на экране окно с ошибкой. Чтобы в будущем у вас не возникало конфликтов игры с антивирусом, после загрузки и установки их нужно заносить в исключения. Например, в популярном Avast этот раздел называет режимом «Не беспокоить». Вам нужно найти этот раздел в своем антивирусе и внести в него CS:GO. Делайте это после каждой переустановки игры.
Источник
Unable to Use Custom Fonts Windows 10 #1608
Comments
Issue or Feature
I have exhausted every guide on the web. I am currently unable to use any custom font on Windows 10.
Error message: Pango-WARNING **: 12:15:05.151: couldn’t load font «Roboto Light Not-Rotated 25px», falling back to «Sans Light Not-Rotated 25px», expect ugly output.
Steps to Reproduce
Your Environment
- Version of node-canvas (output of npm list canvas or yarn list canvas ):
- Environment (e.g. node 4.2.0 on Mac OS X 10.8):
Node v14.4.0 on Windows 10 x64
Canvas v2.6.1
The text was updated successfully, but these errors were encountered:
That error happens when the family wasn’t listed by Windows (specifically EnumFontFamiliesExW ). I don’t have Windows but I suspect that I wouldn’t be able to repro since that’s a pretty big failure that (I hope) we would have heard of. So it might be some specific font setting in your system.
Could you set the environment variable PANGO_WIN32_DEBUG=true and run your example again, then paste the output?
Can reproduce, with a different font.
Error
Steps to Reproduce
Environment
- Version of node-canvas (output of npm list canvas or yarn list canvas ): v2.6.1
- Environment (e.g. node 4.2.0 on Mac OS X 10.8): node v12.17.0 on Windows 10 Pro x64 (1909)
Error with PANGO_WIN32_DEBUG flag
I’m having the same issue. Is this gonna be fixed at some point?
Nevermind, I got it working.
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file.
It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
You probably should install the ttf files.
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file. It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
thanks, it works for me
From what I can tell, Roboto-Medium (the one I’m using) and probably Roboto-Light as well, have a different font name in the TTF file. It worked fine with me with Roboto-Italic , because it’s only called Roboto there, as you can see:
. but Roboto-Medium is not:
I tried multiple code combinations but this is the only one what worked:
So I guess using the font name that shows up when you open the TTF file is the way to go.
I just tested the Light variation as I’m writing this, and it does work without installing the font in the system.
This is sort of a «me too.» I was trying to use a custom font on Windows and was having no luck. I was seeing the same error message. We have a number of variations of our custom font and the only one I can get to work is the one with an internal font name having no spaces or hyphens. (Hint to Windows users: Right click on the font in Windows Explorer and Preview will show you the font.)
When I try to use Foo-variation or Foo variation2 , the message from Pango only mentions the «root» part of the name:
I don’t know if that will help someone fix this, but I too am in business now (finally). Thanks, @HeCorr!
Источник
-
03-25-2019
#1
New Member
- Join Date
- Jan 2018
- Gender
- Posts
- 3
- Reputation
10
- Thanks
- 0
Unable to open font file C:/WINDOWS/fonts/arial.ttf for font Arial 14,existing CSGO
any fix?
-
04-10-2019
#2
New Member
- Join Date
- Oct 2018
- Gender
- Posts
- 14
- Reputation
10
- Thanks
- 0
Your user account may not have sufficient privileges to access this page.
-
04-14-2019
#3
Member
- Join Date
- Oct 2018
- Gender
- Location
- 127.0.0.1
- Posts
- 105
- Reputation
33
- Thanks
- 28
- My Mood
-
Originally Posted by iamLau
any fix?Search for this font on C:/WINDOWS/fonts/ If you find it, start as admin, if you don’t find it search on google arial font, it’s easy af men
Social Engineer since 1990
All times are GMT -6. The time now is 06:35 PM.
Дота вылетает при запуске
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Когда запускаю доту выдаёт ошибку «Unable to open font file» и дальше путь папки. Скриншот с ошибкой можно посмотреть тут https://ibb.co/M23CWJF.
sh6ly
Пользователь
Регистрация:
14.05.2022
Сообщения: 245
Рейтинг: 113
Регистрация:
14.05.2022
Сообщения: 245
Рейтинг: 113
Проверь целостность файлов и перекачай игру
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
sh6ly сказал(а):↑
Проверь целостность файлов и перекачай игру
Нажмите, чтобы раскрыть…
пробовал
sh6ly
Пользователь
Регистрация:
14.05.2022
Сообщения: 245
Рейтинг: 113
Регистрация:
14.05.2022
Сообщения: 245
Рейтинг: 113
makeup43 сказал(а):↑
пробовал
Нажмите, чтобы раскрыть…
Ты скриншот неправильно загрузил, ссылки нет, только точка.
pyles
Пользователь
Регистрация:
23.06.2013
Сообщения: 15065
Рейтинг: 8400
Нарушения: 30
Регистрация:
23.06.2013
Сообщения: 15065
Рейтинг: 8400
Нарушения: 30
makeup43 сказал(а):↑
Когда запускаю доту выдаёт ошибку «Unable to open font file» и дальше путь папки. Скриншот с ошибкой можно посмотреть тут https://ibb.co/M23CWJF.
Нажмите, чтобы раскрыть…
ты не смог в ссылку
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
pyles сказал(а):↑
ты не смог в ссылку
Нажмите, чтобы раскрыть…
я не понял
pyles
Пользователь
Регистрация:
23.06.2013
Сообщения: 15065
Рейтинг: 8400
Нарушения: 30
Регистрация:
23.06.2013
Сообщения: 15065
Рейтинг: 8400
Нарушения: 30
makeup43 сказал(а):↑
Нажмите, чтобы раскрыть…
ладно чел с егодняшней регой, лень тебе отвечать
Spirit_WinD
Пользователь
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
пробуй скачай указанный в ошибке шрифт и кинь его в папку windowsfonts…
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Spirit_WinD сказал(а):↑
пробуй скачай указанный в ошибке шрифт и кинь его в папку windowsfonts…
Нажмите, чтобы раскрыть…
сделал ещё давно
Spirit_WinD
Пользователь
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Spirit_WinD сказал(а):↑
Нажмите, чтобы раскрыть…
к сожалению это не сработало
Spirit_WinD
Пользователь
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
Регистрация:
06.01.2015
Сообщения: 587
Рейтинг: 188
а если попробовать закинуть шрифт в папку с игрой? (…Steamsteamappscommondota 2 betagamedotapanoramafonts)
также можно попробовать удалить файлы из этой папки и проверить в стиме файлы игры на целостность (перекачается недостающее).в игре локализация какая стоит? китайская что ли? если да, то пробуй скинуть на ру. или англ.
можно попробовать запустить с параметром -language russian или просто выбрать в свойствах игры в стиме язык русский (или english).
makeup43
Пользователь
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Регистрация:
07.01.2023
Сообщения: 6
Рейтинг: 0
Spirit_WinD сказал(а):↑
а если попробовать закинуть шрифт в папку с игрой? (…Steamsteamappscommondota 2 betagamedotapanoramafonts)
также можно попробовать удалить файлы из этой папки и проверить в стиме файлы игры на целостность (перекачается недостающее).в игре локализация какая стоит? китайская что ли? если да, то пробуй скинуть на ру. или англ.
можно попробовать запустить с параметром -language russian или просто выбрать в свойствах игры в стиме язык русский (или english).Нажмите, чтобы раскрыть…
у меня папки panorama нету.
И эта ошибки появилась с пустого места
Тема закрыта
-
Заголовок
Ответов Просмотров
Последнее сообщение
-
Сообщений: 2
10 Feb 2023 в 03:30 -
Сообщений: 1
10 Feb 2023 в 03:26 -
Сообщений: 5
10 Feb 2023 в 03:09Сообщений:5
Просмотров:10
-
Сообщений: 1
10 Feb 2023 в 02:58 -
Сообщений: 8
10 Feb 2023 в 02:38Сообщений:8
Просмотров:18
Bug 454785
— Ardour2 Pango Error. Session crashed and will no longer open.
Summary:
Ardour2 Pango Error. Session crashed and will no longer open.
|
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
Приветсвую,
слетели кирилистические шрифты, X11 рапортует об ошибке, как быть?
messages
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: failed to create cairo scaled font, expect ugly output. the offending font is ‘DejaVu Sans 10’
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: font_font status is: <unknown error status>
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: scaled_font status is: out of memory
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: failed to create cairo scaled font, expect ugly output. the offending font is ‘DejaVu Sans 8.970703125’
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: font_font status is: <unknown error status>
Apr 14 14:29:35 master gdmgreeter[9075]: Pango-WARNING: scaled_font status is: out of memory
Apr 14 14:29:36 master gdmgreeter[9075]: Pango-ERROR: Unable to open font file /usr/share/fonts/ttf/dejavu/DejaVuSans.ttf for font DejaVu Sans 9.9990234375, exiting aborting…
Записан
Место на диске и свопе проверьте.
Записан
Андрей Черепанов (cas@)
завтра гляну, компьютер школьный. Добавлю, что при старте иксов, из под рута все путем, только интерфейс англоязычный. также от пользователя независит т.к. пробывал создавать и заходить от др. пользователя.
Записан
root не имеет квот — ему места надо меньше, да и домашний каталог у него не в /home
Записан
погуглил, нашел проблему, подозреваю что связано с fontcache и fontscale
недостающий лог .xsession-error
((xfce4-menu-plugin:7706): Pango-WARNING **: failed to create cairo scaled font, expect ugly output. the offending font is 'Liberation Sans 10'
(xfce4-menu-plugin:7706): Pango-WARNING **: font_font status is: <unknown error status>
(xfce4-menu-plugin:7706): Pango-WARNING **: scaled_font status is: out of memory
(xfce4-menu-plugin:7706): Pango-WARNING **: shaping failure, expect ugly output. shape-engine='BasicEngineFc', font='Liberation Sans 10'
(xfce4-menu-plugin:7706): Pango-WARNING **: failed to create cairo scaled font, expect ugly output. the offending font is 'Liberation Sans 8.853515625'
(xfce4-menu-plugin:7706): Pango-WARNING **: font_font status is: success
(xfce4-menu-plugin:7706): Pango-WARNING **: scaled_font status is: out of memory
(xfce4-menu-plugin:7706): Pango-WARNING **: shaping failure, expect ugly output. shape-engine='BasicEngineFc', font='Liberation Sans 8.853515625',
(xfce4-session:7664): Pango-WARNING **: failed to create cairo scaled font, expect ugly output. the offending font is 'Liberation Sans 10'
(xfce4-session:7664): Pango-WARNING **: font_font status is: <unknown error status>
(xfce4-session:7664): Pango-WARNING **: scaled_font status is: out of memory
(xfce4-session:7664): Pango-WARNING **: shaping failure, expect ugly output. shape-engine='BasicEngineFc', font='Liberation Sans 10'
(xfce4-session:7664): Pango-WARNING **: failed to create cairo scaled font, expect ugly output. the offending font is 'Liberation Sans 8.853515625'
(xfce4-session:7664): Pango-WARNING **: font_font status is: success
(xfce4-session:7664): Pango-WARNING **: scaled_font status is: out of memory
(xfce4-session:7664): Pango-WARNING **: shaping failure, expect ugly output. shape-engine='BasicEngineFc', font='Liberation Sans 8.853515625'
(xfce4-session:7664): Pango-WARNING **: failed to create cairo scaled font, expect ugly output. the offending font is 'Liberation Sans Bold 11.998046875'
(xfce4-session:7664): Pango-WARNING **: font_font status is: <unknown error status>
(xfce4-session:7664): Pango-WARNING **: scaled_font status is: out of memory
(xfce4-session:7664): Pango-WARNING **: shaping failure, expect ugly output. shape-engine='BasicEngineFc', font='Liberation Sans Bold 11.998046875'
** Message: xfsm-shutdown-helper.c:268: Using HAL to shutdown/reboot the computer.
« Последнее редактирование: 14.04.2011 16:01:47 от NickM »
Записан