[Sailfish] Bugfix for not displaying titles with & char properly, fixes #159
This commit is contained in:
parent
38ca442112
commit
1458116dbe
2 changed files with 3 additions and 2 deletions
|
|
@ -109,7 +109,7 @@ ListModel {
|
|||
totalUnreadCount += parseInt(feeds[feed].unread)
|
||||
}
|
||||
}
|
||||
if (root.count >= 2&& root.category.categoryId !== ttrss.constants['categories']['SPECIAL'])
|
||||
if (root.count >= 2 && root.category.categoryId !== ttrss.constants['categories']['SPECIAL']) {
|
||||
root.insert(0, {
|
||||
title: constant.allArticles,
|
||||
unreadcount: totalUnreadCount,
|
||||
|
|
@ -119,6 +119,7 @@ ListModel {
|
|||
icon: '',
|
||||
lastUpdated: ''
|
||||
})
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ ListItem {
|
|||
maximumLineCount: settings.lengthOfTitle
|
||||
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
|
||||
truncationMode: TruncationMode.Fade
|
||||
textFormat: Text.StyledText
|
||||
textFormat: Text.RichText
|
||||
font.weight: Font.Bold
|
||||
font.pixelSize: Theme.fontSizeMedium
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue