Commit dcd8a101 authored by Vitaly Lipatov's avatar Vitaly Lipatov

add TODO

parent 9c592650
...@@ -86,6 +86,7 @@ UT_sint32 GR_Font::getCharWidthFromCache (UT_UCSChar c) const ...@@ -86,6 +86,7 @@ UT_sint32 GR_Font::getCharWidthFromCache (UT_UCSChar c) const
// the static getCharWidthCache() // the static getCharWidthCache()
#ifndef ABI_GRAPHICS_PLUGIN_NO_WIDTHS #ifndef ABI_GRAPHICS_PLUGIN_NO_WIDTHS
// first of all, handle 0-width spaces ... // first of all, handle 0-width spaces ...
// TODO: 2060 in add to 0xFEFF
if(c == 0xFEFF || c == 0x200B || c == UCS_LIGATURE_PLACEHOLDER) if(c == 0xFEFF || c == 0x200B || c == UCS_LIGATURE_PLACEHOLDER)
return 0; return 0;
......
...@@ -4820,6 +4820,8 @@ bool FV_View::setCharFormat(const gchar * properties[], const gchar * attribs[]) ...@@ -4820,6 +4820,8 @@ bool FV_View::setCharFormat(const gchar * properties[], const gchar * attribs[])
not strictly text fmt; when pressing ctrl+space, more often than not the user wants to not strictly text fmt; when pressing ctrl+space, more often than not the user wants to
get rid of bold, italics, etc., but not of the langauge markup. So we exercise a get rid of bold, italics, etc., but not of the langauge markup. So we exercise a
degree of discretion. degree of discretion.
TODO: cleanup justification too
*/ */
bool FV_View::resetCharFormat(bool bAll) bool FV_View::resetCharFormat(bool bAll)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment