m_showPreview(false),
m_loadingDirectory(false),
m_storedCategorizedSorting(false),
+ m_isContextMenuOpen(false),
m_mode(DolphinView::IconsView),
m_topLayout(0),
m_controller(0),
applyViewProperties(url);
m_topLayout->addWidget(itemView());
+
+ if (DolphinSettings::instance().generalSettings()->showToolTips()) {
+ // TODO: instantiate ToolTipManager here...
+ }
}
DolphinView::~DolphinView()
return;
}
- if (item.isNull()) {
+ // TODO: the m_isContextMenuOpen check is a workaround for Qt-issue xxxxxx
+ if (item.isNull() || m_isContextMenuOpen) {
return;
}
item = fileItem(index);
}
+ m_isContextMenuOpen = true; // TODO: workaround for Qt-issue xxxxxx
emit requestContextMenu(item, url());
+ m_isContextMenuOpen = false;
}
void DolphinView::dropUrls(const KUrl::List& urls,