* Check whether an entry is visible and not folded or filtered away. * Note: This does not consider the scrolling range; it might still require scrolling to make the setting really visible. * @param item Entry to search for. * @return true if entry is visible. */
| 40 | * @return true if entry is visible. |
| 41 | */ |
| 42 | bool BaseSettingEntry::IsVisible(const BaseSettingEntry *item) const |
| 43 | { |
| 44 | if (this->IsFiltered()) return false; |
| 45 | return this == item; |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Find setting entry at row \a row_num |
no test coverage detected