Such
* double click background
BUG: 485295
void DolphinMainWindow::slotDoubleClickViewBackground(Qt::MouseButton button)
{
void DolphinMainWindow::slotDoubleClickViewBackground(Qt::MouseButton button)
{
- Q_UNUSED(button) // might be of use later
+ if (button == Qt::MouseButton::LeftButton) {
+ // only handle left mouse button for now
+ return;
+ }
GeneralSettings *settings = GeneralSettings::self();
QString clickAction = settings->doubleClickViewAction();
GeneralSettings *settings = GeneralSettings::self();
QString clickAction = settings->doubleClickViewAction();