config moved to c++ plugin, removed old qml + fileview implementation
This commit is contained in:
@@ -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();
|
||||
}
|
||||
Reference in New Issue
Block a user