DolphinContextMenu: drop wrong assert

`m_context` can also be `SearchContext` or `TimelineContext`, so this
assert has been wrong since 8b0c12a59c.
This commit is contained in:
Elvis Angelaccio 2020-12-15 22:56:06 +01:00
parent c95d7fae79
commit aeea98837d

View file

@ -103,7 +103,6 @@ DolphinContextMenu::Command DolphinContextMenu::open()
} else if (m_context & ItemContext) {
openItemContextMenu();
} else {
Q_ASSERT(m_context == NoContext);
openViewportContextMenu();
}