| 112 | } |
| 113 | |
| 114 | void BootEntryListView::rowsChanged(const QModelIndex &, int, int) |
| 115 | { |
| 116 | auto index = currentIndex(); |
| 117 | if(!index.isValid() || !model()->checkIndex(index) || index.row() >= model()->rowCount()) |
| 118 | return; |
| 119 | |
| 120 | Q_EMIT selected(index); |
| 121 | } |
| 122 | |
| 123 | void BootEntryListView::selectionChanged(const QItemSelection &selection, const QItemSelection &) |
| 124 | { |