[dialer] Don't show call duration on missed messages

Or messages that were not connected (and so have no duration)
This commit is contained in:
Martin Klapetek 2015-06-29 20:09:31 +02:00
parent baec617ae4
commit 302a68ea7c

View file

@ -114,6 +114,7 @@ Item {
PlasmaComponents.Label {
Layout.alignment: Qt.AlignRight
text: i18n("Duration: %1", secondsToTimeString(model.duration));
visible: model.duration > 0
}
}
}