diff options
Diffstat (limited to 'sowatchui/watchletsmodel.cpp')
-rw-r--r-- | sowatchui/watchletsmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sowatchui/watchletsmodel.cpp b/sowatchui/watchletsmodel.cpp index cdc3593..461a38b 100644 --- a/sowatchui/watchletsmodel.cpp +++ b/sowatchui/watchletsmodel.cpp @@ -149,7 +149,7 @@ void WatchletsModel::reload() if (_unadded) { qDebug() << "Listing unadded watchlets from" << all; foreach (const QString& s, all) { - if (!_enabled.contains(s)) { + if (!_info[s].hidden && !_enabled.contains(s)) { _list.append(s); } } |