https://bugs.kde.org/show_bug.cgi?id=524784
--- Comment #2 from [email protected] --- I decided to bisect the problem and I think I have found the offending commit. I have not dug into the commit itself but given that it does some special handling of the listed special characters I think it makes perfect sense that this is the problem. ``` bence@norodix-pc:~/Downloads/konsole/build ((no branch, bisect started on 9a304001a)) $ git bisect good 966f52d4532da8ef752e1f8d411ea525d78025be is the first bad commit commit 966f52d4532da8ef752e1f8d411ea525d78025be Author: Matan Ziv-Av <[email protected]> Date: Tue Apr 28 19:29:36 2026 +0300 Add profile option use word mode onlt on characters that commonly appear in coding ligatures Only strings of the characters `!#$%()*+-./:<=>?[]^_{|}~` will be sent together to Qt for rendering. src/Screen.cpp | 4 ++++ src/characters/Character.h | 1 + src/profile/Profile.cpp | 5 +++-- src/profile/Profile.h | 3 +++ src/terminalDisplay/TerminalPainter.cpp | 4 ++++ src/widgets/EditProfileAppearancePage.ui | 16 ++++++++++++++++ src/widgets/EditProfileDialog.cpp | 10 ++++++++++ src/widgets/EditProfileDialog.h | 1 + 8 files changed, 42 insertions(+), 2 deletions(-) bence@norodix-pc:~/Downloads/konsole/build ((no branch, bisect started on 9a304001a)) $ git bisect log git bisect start # status: waiting for both good and bad commits # bad: [9a304001aad60b7a3a39bca39ce3a3764ec058d5] Drop bogus ZLIB dependency git bisect bad 9a304001aad60b7a3a39bca39ce3a3764ec058d5 # status: waiting for good commit(s), bad commit known # good: [37022dd8fe98d7fae86d9fcbc098748f83d3d0f9] GIT_SILENT Sync po/docbooks with svn git bisect good 37022dd8fe98d7fae86d9fcbc098748f83d3d0f9 # good: [0b230593f66234da411e4e152d73c0572ff1ed8f] GIT_SILENT Sync po/docbooks with svn git bisect good 0b230593f66234da411e4e152d73c0572ff1ed8f # bad: [46b852e0736fdec11e5ab800110eccaa93a69486] GIT_SILENT Sync po/docbooks with svn git bisect bad 46b852e0736fdec11e5ab800110eccaa93a69486 # good: [b50d0af564c6d08dcea3dff2262662b5448f94ae] GIT_SILENT Sync po/docbooks with svn git bisect good b50d0af564c6d08dcea3dff2262662b5448f94ae # bad: [bb99e72e0b97c1b6c20ed68ce9bfca8a6a7c0070] GIT_SILENT Sync po/docbooks with svn git bisect bad bb99e72e0b97c1b6c20ed68ce9bfca8a6a7c0070 # bad: [966f52d4532da8ef752e1f8d411ea525d78025be] Add profile option use word mode onlt on characters that commonly appear in coding ligatures git bisect bad 966f52d4532da8ef752e1f8d411ea525d78025be # good: [c5b5dadf31c2d0249b2ecb7693dc1d82ce20f647] Prevent QTabBar from closing tabs on middle mouse clicks git bisect good c5b5dadf31c2d0249b2ecb7693dc1d82ce20f647 # good: [e4e20bb6e65dd175240796eb533760d4239b7a63] Add automatic profile switching based on system theme git bisect good e4e20bb6e65dd175240796eb533760d4239b7a63 # good: [25192e325828ca00064d90f755fbbc9cd20aecb8] ViewSplitter: inherit font from active pane on split git bisect good 25192e325828ca00064d90f755fbbc9cd20aecb8 # first bad commit: [966f52d4532da8ef752e1f8d411ea525d78025be] Add profile option use word mode onlt on characters that commonly appear in coding ligatures bence@norodix-pc:~/Downloads/konsole/build ((no branch, bisect started on 9a304001a)) $ git bisect visualize commit 966f52d4532da8ef752e1f8d411ea525d78025be Author: Matan Ziv-Av <[email protected]> Date: Tue Apr 28 19:29:36 2026 +0300 Add profile option use word mode onlt on characters that commonly appear in coding ligatures Only strings of the characters `!#$%()*+-./:<=>?[]^_{|}~` will be sent together to Qt for rendering. ``` (Just in case it matters I'll note that for bisecting I used distrobox in my arch system as suggested here: https://community.kde.org/Neon/Containers) -- You are receiving this mail because: You are watching all bug changes.
