mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
Don't try to change the icon of the "sort" action menu if it doesn't exist
BUG: 255819 FIXED-IN: 4.10.4 REVIEW: 109966
This commit is contained in:
parent
24609e78f8
commit
f12345a57f
1 changed files with 4 additions and 2 deletions
|
@ -528,8 +528,10 @@ void DolphinViewActionHandler::slotSortRoleChanged(const QByteArray& role)
|
|||
if (action) {
|
||||
action->setChecked(true);
|
||||
|
||||
QAction* sortByMenu = m_actionCollection->action("sort");
|
||||
sortByMenu->setIcon(KIcon(action->icon()));
|
||||
if (!action->icon().isNull()) {
|
||||
QAction* sortByMenu = m_actionCollection->action("sort");
|
||||
sortByMenu->setIcon(KIcon(action->icon()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue