config moved to c++ plugin, removed old qml + fileview implementation

This commit is contained in:
2026-08-13 02:25:26 +02:00
parent c29b91cd26
commit 3cd3209b28
341 changed files with 4851 additions and 3502 deletions
+19
View File
@@ -0,0 +1,19 @@
#include "Lock.hpp"
LockSizes::LockSizes(QObject *parent) : ConfigSection(parent) {
m_centerWidth = 600;
m_heightMult = 0.7;
m_ratio = 1.78;
wireSignals();
}
Lock::Lock(QObject *parent) : ConfigSection(parent) {
m_blurAmount = 10;
m_enableFprint = true;
m_maxFprintTries = 3;
m_recolorLogo = false;
m_showNotifContent = true;
m_showNotifIcon = true;
m_sizes = new LockSizes(this);
wireSignals();
}