mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
Update src/widgets/helper/NotebookTab.cpp
Co-authored-by: nerix <nero.9@hotmail.de>
This commit is contained in:
parent
3b64f142e6
commit
70f497d3bd
|
@ -411,16 +411,12 @@ void NotebookTab::setHighlightState(HighlightState newHighlightStyle,
|
||||||
const auto &splits = splitContainer->getSplits();
|
const auto &splits = splitContainer->getSplits();
|
||||||
for (const auto &split : splits)
|
for (const auto &split : splits)
|
||||||
{
|
{
|
||||||
auto &&filterIdsSource = channelViewSource.getFilterIds();
|
auto filterIdsSource = channelViewSource.getFilterIds();
|
||||||
auto uniqueFilterIdsSource =
|
auto filterIdsSplit = split->getChannelView().getFilterIds();
|
||||||
QSet(filterIdsSource.cbegin(), filterIdsSource.cend());
|
|
||||||
auto &&filterIdsSplit = split->getChannelView().getFilterIds();
|
|
||||||
auto uniqueFilterIdsSplit =
|
|
||||||
QSet(filterIdsSplit.cbegin(), filterIdsSplit.cend());
|
|
||||||
|
|
||||||
auto isSubset = []<typename T>(QSet<T> sub, QSet<T> super) {
|
auto isSubset = []<typename T>(const QList<T> &sub, const QList<T> &super) {
|
||||||
return std::ranges::none_of(sub, [&super](const auto &subItem) {
|
return std::ranges::all_of(sub, [&super](const auto &subItem) {
|
||||||
return !super.contains(subItem);
|
return super.contains(subItem);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue