https://bugs.kde.org/show_bug.cgi?id=429408

Tom Crider <gloriouseggr...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gloriouseggr...@gmail.com

--- Comment #20 from Tom Crider <gloriouseggr...@gmail.com> ---
Based on the information given I made a small workaround patch for qt5-qtbase. 
I needed this functionality to work for slack. No idea if it's any kind of
acceptable approach/welcome to suggestions:

```
diff --git a/src/corelib/io/qurlidna.cpp b/src/corelib/io/qurlidna.cpp
index a2f0caa6..88748cb3 100644
--- a/src/corelib/io/qurlidna.cpp
+++ b/src/corelib/io/qurlidna.cpp
@@ -2532,10 +2532,10 @@ QString qt_ACE_do(const QString &domain, AceOperation
op, AceLeadingDot dot)
                 ushort uc = in->unicode();
                 if (uc > 0x7f)
                     simple = false;
-                if (uc >= 'A' && uc <= 'Z')
-                    *out = QChar(uc | 0x20);
-                else
-                    *out = *in;
+                /*if (uc >= 'A' && uc <= 'Z')
+                    *out = QChar(uc | 0x20);*/
+                /*else*/
+                *out = *in;
             }
         }

```

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to