summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2021-06-26 23:56:34 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2021-06-26 23:56:34 +0200
commit78c69a8f7b6aeae67cc715d4733e22a56f350012 (patch)
treef54b5bd71ce44e697cec371a60cf0c189c44b906 /src
parentMerge pull request #624 from Cadair/inline_img_single_quote (diff)
downloadnheko-78c69a8f7b6aeae67cc715d4733e22a56f350012.tar.xz
Fix tags going missing if you join communities
Diffstat (limited to 'src')
-rw-r--r--src/timeline/CommunitiesModel.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeline/CommunitiesModel.h b/src/timeline/CommunitiesModel.h

index 8c40ec5b..677581dc 100644 --- a/src/timeline/CommunitiesModel.h +++ b/src/timeline/CommunitiesModel.h
@@ -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;