mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 20:34:07 +02:00
no place name over user-story scroll items
This commit is contained in:
parent
421707c5d8
commit
d39446f340
1 changed files with 2 additions and 2 deletions
|
@ -104,8 +104,8 @@ Window {
|
|||
goFunction: goCard;
|
||||
path: model.place_name + model.path;
|
||||
thumbnail: model.thumbnail_url;
|
||||
placeText: model.place_name;
|
||||
usersText: (model.created_at ? pastTime(model.created_at) : (model.online_users + ((model.online_users === 1) ? ' person' : ' people')));
|
||||
placeText: model.created_at ? "" : model.place_name;
|
||||
usersText: model.created_at ? pastTime(model.created_at) : (model.online_users + ((model.online_users === 1) ? ' person' : ' people'));
|
||||
hoverThunk: function () { ListView.view.currentIndex = index; }
|
||||
unhoverThunk: function () { ListView.view.currentIndex = -1; }
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue