mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
fixed wrong ASSERT in column-view (the usecase is valid)
BUG: 158615 svn path=/trunk/KDE/kdebase/apps/; revision=782789
This commit is contained in:
parent
865a33c5db
commit
80ad31f00a
1 changed files with 1 additions and 1 deletions
|
@ -391,13 +391,13 @@ void DolphinColumnWidget::slotEntered(const QModelIndex& index)
|
|||
|
||||
void DolphinColumnWidget::requestActivation()
|
||||
{
|
||||
m_view->m_controller->setItemView(this);
|
||||
m_view->m_controller->requestActivation();
|
||||
if (!m_active) {
|
||||
m_view->requestActivation(this);
|
||||
m_view->m_controller->triggerUrlChangeRequest(m_url);
|
||||
selectionModel()->clear();
|
||||
}
|
||||
Q_ASSERT(m_view->m_controller->itemView() == this);
|
||||
}
|
||||
|
||||
void DolphinColumnWidget::updateFont()
|
||||
|
|
Loading…
Reference in a new issue