summaryrefslogtreecommitdiffstats
path: root/delegates.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'delegates.cpp')
-rw-r--r--delegates.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/delegates.cpp b/delegates.cpp
index 927726c..db4b6b1 100644
--- a/delegates.cpp
+++ b/delegates.cpp
@@ -81,7 +81,7 @@ QString SizeDelegate::displayText(const QVariant &value, const QLocale &locale)
QString DurationDelegate::displayText(const QVariant &value, const QLocale &locale) const{
Q_UNUSED(locale);
- if(value.toString().contains("x")){
+ if(value.toString().contains("x") || value.toString() == "skipped"){
return value.toString();
}
int secs = value.toFloat();