20 lines
448 B
C++
20 lines
448 B
C++
#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();
|
|
}
|