hello!
I have been reported this bug
https://bugs.kde.org/show_bug.cgi?id=223684 yesterday, via private
mail, and I asked the guy to open a bug in bugzilla.
you can read the description there, it looks like a really simple
problem with the string returned by prettyTimezone().
however, I am not sure if this was just a forgotten bug or the
behiavour is actually intended, for some reason that i don't know.
my patch to correct this is attached, do I have green light to commit?

Bye,
-Riccardo
-- 
Pace Peace Paix Paz Frieden Pax Pokój Friður Fred Béke 和平
Hasiti Lapé Hetep Malu Mир Wolakota Santiphap Irini Peoch שלום
Shanti Vrede Baris Rój Mír Taika Rongo Sulh Mir Py'guapy 평화
diff --git a/libs/plasmaclock/clockapplet.cpp b/libs/plasmaclock/clockapplet.cpp
index 59bd56d..817931e 100644
--- a/libs/plasmaclock/clockapplet.cpp
+++ b/libs/plasmaclock/clockapplet.cpp
@@ -170,7 +170,7 @@ public:
             if (tzParts.count() == 1) {
                 prettyTimezone = timezonetranslated;
             } else {
-                prettyTimezone = tzParts.value(1);
+                prettyTimezone = tzParts.last();
             }
         } else {
             prettyTimezone = localTimezone();
_______________________________________________
Plasma-devel mailing list
Plasma-devel@kde.org
https://mail.kde.org/mailman/listinfo/plasma-devel

Reply via email to