void DolphinView::setSelectionMode(const bool enabled)
{
if (enabled) {
- m_proxyStyle = std::make_unique<SingleClickSelectionProxyStyle>();
+ m_proxyStyle = std::make_unique<SelectionMode::SingleClickSelectionProxyStyle>();
setStyle(m_proxyStyle.get());
m_view->setStyle(m_proxyStyle.get());
} else {
return m_container->controller()->selectionMode();
}
-
void DolphinView::setPreviewsShown(bool show)
{
if (previewsShown() == show) {