startupfeedback: Don't use a lambda unnecessarily

This commit is contained in:
Aleix Pol 2020-11-09 18:24:46 +01:00 committed by Aleix Pol Gonzalez
parent 35fe4fa7c1
commit 4d549d76be

View file

@ -277,13 +277,11 @@ void StartupFeedbackEffect::start(const QString& icon)
if (!m_active)
effects->startMousePolling();
m_active = true;
auto readCursorSize = []() -> int {
// read details about the mouse-cursor theme define per default
KConfigGroup mousecfg(effects->inputConfig(), "Mouse");
int cursorSize = mousecfg.readEntry("cursorSize", 24);
return cursorSize;
};
m_cursorSize = readCursorSize();
// read details about the mouse-cursor theme define per default
KConfigGroup mousecfg(effects->inputConfig(), "Mouse");
m_cursorSize = mousecfg.readEntry("cursorSize", 24);
int iconSize = m_cursorSize / 1.5;
if (!iconSize) {
iconSize = QApplication::style()->pixelMetric(QStyle::PM_SmallIconSize);