[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Thomas Landauer changed: What|Removed |Added Status|NEEDSINFO |REPORTED Resolution|WAITINGFORINFO |--- Ever confirmed|1 |0 -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #15 from Bug Janitor Service --- Dear Bug Submitter, This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days the bug will be closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging If you have already provided the requested information, please mark the bug as REPORTED so that the KDE team knows that the bug is ready to be confirmed. Thank you for helping us make KDE software even better for everyone! -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #14 from Thomas Landauer --- I don't know how to get Qt 6. The issue from my above reproduction script seems to be fixed now in Konsole 21.12.3 (Qt 5.15.3). But there's still something wrong, regarding styling (color): * The color is never working for those special characters * The character is only displayed partially, if there's no blank after it ```bash #!/bin/bash GREEN='\033[0;32m' NC='\033[0m' # No Color printf "${GREEN}Green${NC}\n" # Just to prove that `${GREEN}` is working in principle ;-) printf "✔\n" # Full checkmark displayed in grey color printf "${GREEN}✔${NC}\n" # "Half" checkmark displayed in grey color printf "${GREEN}✔ ${NC}\n" # Full checkmark displayed in grey color ``` -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #13 from Norman Diamond --- (In reply to Bug Janitor Service from comment #12) > This bug has been in NEEDSINFO status with no change for at least > 15 days. I thought it was closer to 15 years than 15 days, but actually it's only closer to 9 years. The bug caused trouble for me when I edited source files that had been created by others, with downarrows and uparrows in comments. I no longer edit their source files, so I am no longer affected by the bug. This doesn't mean it WORKSFORME, because I don't find out if it works or not. Three years ago Thomas Landauer found similar manifestations of the bug. If he's still active, perhaps you can ask him if it's fixed or not. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #12 from Bug Janitor Service --- Dear Bug Submitter, This bug has been in NEEDSINFO status with no change for at least 15 days. Please provide the requested information as soon as possible and set the bug status as REPORTED. Due to regular bug tracker maintenance, if the bug is still in NEEDSINFO status with no change in 30 days the bug will be closed as RESOLVED > WORKSFORME due to lack of needed information. For more information about our bug triaging procedures please read the wiki located here: https://community.kde.org/Guidelines_and_HOWTOs/Bug_triaging If you have already provided the requested information, please mark the bug as REPORTED so that the KDE team knows that the bug is ready to be confirmed. Thank you for helping us make KDE software even better for everyone! -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Kurt Hindenburg changed: What|Removed |Added Resolution|--- |WAITINGFORINFO Status|CONFIRMED |NEEDSINFO --- Comment #11 from Kurt Hindenburg --- Can you try a recent version such as Qt6? If you can reproduce any oddities, just revert back to confirmed. Thanks. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Thomas Landauer changed: What|Removed |Added CC||tho...@landauer.at --- Comment #10 from Thomas Landauer --- I'm observing the same with other characters too, in Konsole 19.12.3 (=default on kubuntu 20.04): ✔ (checkmark) and ✖ (X) Here's a (very fancy ;-) reproduction script: ```bash #!/bin/bash echo '✖'; echo '✖A'; echo '✖ A'; echo '↓'; echo '↓A'; echo '↓ A'; ``` The problem only occurs, if the UTF8-character is *immediately* followed by another (`✖A`); it works if it's followed by a line break or space. Here's a screenshot: https://github.com/Codeception/Codeception/issues/6029#issue-735432274 -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Egmont Koblinger changed: What|Removed |Added CC|egm...@gmail.com| -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 andydecle...@gmail.com changed: What|Removed |Added CC||andydecle...@gmail.com -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Sebastian changed: What|Removed |Added Status|REPORTED|CONFIRMED CC||sebastian.englbre...@tum.de Ever confirmed|0 |1 Keywords||investigated, triaged -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #9 from Christoph Feck --- Konsole uses QPainter::drawText() for the complete line, which handles the pixel advances the fonts provide. The only way I see to fix this is to call QPainter::drawText() for each cell character individually, so that the characters are always aligned to grid, regardless how wide they are in the fallback fonts. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #8 from Norman Diamond --- "The down arrow U+2193 is indeed of "ambiguous width" both in Unicode 8.0 and 9.0." Then it's not entirely Konsole's fault, but we still need a workaround for the Unicode consortium's bug. The present behaviour sometimes makes Konsole unusable, just like (retired C language lawyer speaks up now) a C compiler that only compiled one single valid C program would be legal but unusable. How did the Unicode consortium figure out that half-width a, full-width a, lower-case a, upper-case A, upper-case A, etc., shouldn't all have ambiguous width, ambiguous casing, etc. But just allowing Konsole to be unfriendly doesn't force Konsole to be unfriendly. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #7 from Egmont Koblinger --- The down arrow U+2193 is indeed of "ambiguous width" both in Unicode 8.0 and 9.0. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Egmont Koblinger changed: What|Removed |Added CC||egm...@gmail.com --- Comment #6 from Egmont Koblinger --- Might be relevant: https://bugs.launchpad.net/ubuntu/+source/gnome-terminal/+bug/1665140. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Norman Diamond changed: What|Removed |Added Resolution|WAITINGFORINFO |--- Status|NEEDSINFO |UNCONFIRMED --- Comment #5 from Norman Diamond --- Changing status from Needsinfo back to Unconfirmed. If you disagree, please let me know. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #4 from Norman Diamond --- The problem was consistent in a different installation of OpenSuse 13.2, but the problem is inconsistent in my present installation of the same OS. The screenshot is from my present installation, showing the inconsistency. As shown in the "vi" session, when the cursor is in the middle of a line containing arrow characters, something is greatly confused and the display is completely scrambled. This still makes editing just about impossible. But for unknown reasons, in my present installation, the output of cat displays the arrow characters properly in full-width. In my earlier installation, arrow characters were all displayed as half-width both in vi and the output of cat. This still made editing impossible. In my earlier installation, a Japanese person recommended changing the Konsole setting for fixed-width font. Some fonts displayed arrow characters as full-width and solved the problem consistently. In my present installation, I think I haven't tried such an experiment yet, but I don't know what produced the inconsistency. -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 --- Comment #3 from Norman Diamond --- Created attachment 104106 --> https://bugs.kde.org/attachment.cgi?id=104106&action=edit Screenshot Screenshot -- You are receiving this mail because: You are watching all bug changes.
[konsole] [Bug 349088] Down arrow (and other arrows) characters display wrong width
https://bugs.kde.org/show_bug.cgi?id=349088 Kurt Hindenburg changed: What|Removed |Added Status|UNCONFIRMED |NEEDSINFO Resolution|--- |WAITINGFORINFO --- Comment #2 from Kurt Hindenburg --- Can you update and let us know if this is still an issue? and perhaps add a screenshor. -- You are receiving this mail because: You are watching all bug changes.