diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinview.cpp | 4 | ||||
| -rw-r--r-- | src/dolphinview.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphinview.cpp b/src/dolphinview.cpp index 5a0f00bee..0caefe87a 100644 --- a/src/dolphinview.cpp +++ b/src/dolphinview.cpp @@ -749,7 +749,7 @@ void DolphinView::triggerItem(const KFileItem& item) return; } - // TODO: the m_isContextMenuOpen check is a workaround for Qt-issue xxxxxx + // TODO: the m_isContextMenuOpen check is a workaround for Qt-issue 207192 if (item.isNull() || m_isContextMenuOpen) { return; } @@ -778,7 +778,7 @@ void DolphinView::openContextMenu(const QPoint& pos) m_toolTipManager->hideTip(); } - m_isContextMenuOpen = true; // TODO: workaround for Qt-issue xxxxxx + m_isContextMenuOpen = true; // TODO: workaround for Qt-issue 207192 emit requestContextMenu(item, url()); m_isContextMenuOpen = false; } diff --git a/src/dolphinview.h b/src/dolphinview.h index 9af9aab8d..5d88e4f54 100644 --- a/src/dolphinview.h +++ b/src/dolphinview.h @@ -655,7 +655,7 @@ private: bool m_loadingDirectory : 1; bool m_storedCategorizedSorting : 1; bool m_tabsForFiles : 1; - bool m_isContextMenuOpen : 1; // TODO: workaround for Qt-issue xxxxxx + bool m_isContextMenuOpen : 1; // TODO: workaround for Qt-issue 207192 Mode m_mode; |
