mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix tags going missing if you join communities
This commit is contained in:
parent
fddc558b23
commit
78c69a8f7b
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ public:
|
|||
int rowCount(const QModelIndex &parent = QModelIndex()) const override
|
||||
{
|
||||
(void)parent;
|
||||
return 1 + tags_.size();
|
||||
return 1 + tags_.size() + spaceOrder_.size();
|
||||
}
|
||||
QVariant data(const QModelIndex &index, int role) const override;
|
||||
|
||||
|
|
Loading…
Reference in a new issue