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

--- Comment #6 from pej...@gmail.com ---
Using qmlscene it looks good. 
I edited splash.qml and changed the initial version from 2.0.0 to 4.90.90, then
kdevelop also shows the whole string correct, even at 140 dpi.

It's as if the splash window is scaled after the initial "Kdevelop 2.0.0"
string and then is not resized when the correct version is set from splash.cpp.

Following patch fixes it for me:
diff --git a/app/splash.qml b/app/splash.qml
index dd6562c..3c08cba 100644
--- a/app/splash.qml
+++ b/app/splash.qml
@@ -30,9 +30,9 @@ Rectangle {

     property int progress: 50
     property url appIcon
-    property string appVersionMajor: "2"
-    property string appVersionMinor: "0"
-    property string appVersionPatch: "0"
+    property string appVersionMajor: "4"
+    property string appVersionMinor: "90"
+    property string appVersionPatch: "90"

     // color for the non-colored rectangles
     readonly property string defaultColor: "#3E3E3E"

It's just a minor visual bug which should go away when you release 5.0.0.

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

Reply via email to