After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 614617 - Add API for setting width of CJK ambiguous characters
Add API for setting width of CJK ambiguous characters
Status: RESOLVED FIXED
Product: vte
Classification: Core
Component: general
unspecified
Other Linux
: Normal enhancement
: vte-0-38
Assigned To: VTE Maintainers
VTE Maintainers
Depends on:
Blocks: 614618
 
 
Reported: 2010-04-01 21:42 UTC by Behdad Esfahbod
Modified: 2014-04-12 15:50 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Behdad Esfahbod 2010-04-01 21:42:27 UTC
See bug 352654 for example.
Comment 1 Christian Persch 2014-03-31 14:12:05 UTC
Let's add this for 0.38.

Should the setting a) take effect immediately, or b) only on the next reset ?
Comment 2 Behdad Esfahbod 2014-03-31 18:20:56 UTC
Next-reset is a good start.
Comment 3 Christian Persch 2014-04-12 15:50:46 UTC
Fixed on master:

void vte_terminal_set_cjk_ambiguous_width(VteTerminal *terminal, int width);
int vte_terminal_get_cjk_ambiguous_width(VteTerminal *terminal);

Alternatively could have gone with a enum { NARROW, WIDE }, not sure which is better.