[SCM] ktp-contact-applet packaging branch, master, updated. debian/15.12.1-1-966-gde83ac5

Maximiliano Curia maxy at moszumanska.debian.org
Sat May 28 00:11:45 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/ktp-desktop-applets.git;a=commitdiff;h=740dc9b

The following commit has been merged in the master branch:
commit 740dc9b76c20255516296b484a262fb441711752
Author: Francesco Nwokeka <francesco.nwokeka at gmail.com>
Date:   Tue Oct 4 09:36:06 2011 +0200

    FIX applet size bug
    
    the applet was displaying the contact avatar as a 50x50 icon. This because plasma introduced two new
    properties in the plasmoid API that weren't set in the plasmoid: minimumWidth & minumumHeight
---
 src/declarative/contents/ui/main.qml | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/declarative/contents/ui/main.qml b/src/declarative/contents/ui/main.qml
index 3a56740..34d24ed 100644
--- a/src/declarative/contents/ui/main.qml
+++ b/src/declarative/contents/ui/main.qml
@@ -22,9 +22,9 @@ import Qt 4.7
 Item {
     id: mainWidget;
 
-    // default contact size (also ni metadata file) just to be sure
-    width: 128;
-    height: 128;
+    // default contact size (also in metadata file) just to be sure
+    property int minimumWidth: 128;
+    property int minimumHeight: 128;
 
     Contact {
         id: contact;

-- 
ktp-contact-applet packaging



More information about the pkg-kde-commits mailing list