Fixed selecting all on click to location bar

- it was enabled even if you disabled it in preferences
remotes/origin/falkon
nowrep 15 years ago
parent a86a9882aa
commit 4bb5ff9b26
  1. 2
      src/navigation/locationbar.cpp

@ -275,7 +275,7 @@ void LocationBar::mouseDoubleClickEvent(QMouseEvent* event)
void LocationBar::mousePressEvent(QMouseEvent* event)
{
if (cursorPosition() == 0) {
if (cursorPosition() == 0 && m_locationBarSettings->selectAllOnClick) {
selectAll();
return;
}

Loading…
Cancel
Save