X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/6a0a4708c242642ef4e6b9d831792d336b9545a9..48a9ecbf5bb5f3d4e2a548d5ce109ec1d459de6b:/src/selectionmanager.cpp diff --git a/src/selectionmanager.cpp b/src/selectionmanager.cpp index 7dd07e63e..0d3efae09 100644 --- a/src/selectionmanager.cpp +++ b/src/selectionmanager.cpp @@ -79,14 +79,6 @@ void SelectionManager::slotEntered(const QModelIndex& index) m_connected = true; } - const QRect rect = m_view->visualRect(index); - - // align the toggle on the bottom left of the item - const int gap = 2; - const int x = rect.left() + gap; - const int y = rect.top() + gap; - m_toggle->move(QPoint(x, y)); - // increase the size of the toggle for large items const int height = m_view->iconSize().height(); if (height >= KIconLoader::SizeEnormous) { @@ -97,6 +89,18 @@ void SelectionManager::slotEntered(const QModelIndex& index) m_toggle->resize(KIconLoader::SizeSmall, KIconLoader::SizeSmall); } + const QRect rect = m_view->visualRect(index); + int x = rect.left(); + int y = rect.top(); + if (height < KIconLoader::SizeSmallMedium) { + // The height is nearly equal to the smallest toggle height. + // Assure that the toggle is vertically centered instead + // of aligned on the top and gets more horizontal gap. + x += 2; + y += (rect.height() - m_toggle->height()) / 2; + } + m_toggle->move(QPoint(x, y)); + QItemSelectionModel* selModel = m_view->selectionModel(); m_toggle->setChecked(selModel->isSelected(index)); m_toggle->show();