config moved to c++ plugin, removed old qml + fileview implementation
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
#include "Notifs.hpp"
|
||||
|
||||
NotifsSizes::NotifsSizes(QObject *parent) : ConfigSection(parent) {
|
||||
m_badge = 20;
|
||||
m_image = 41;
|
||||
m_width = 400;
|
||||
wireSignals();
|
||||
}
|
||||
|
||||
Notifs::Notifs(QObject *parent) : ConfigSection(parent) {
|
||||
m_actionOnClick = false;
|
||||
m_appNotifCooldown = 0;
|
||||
m_clearThreshold = 0.3;
|
||||
m_defaultExpireTimeout = 5000;
|
||||
m_expandThreshold = 20;
|
||||
m_expire = true;
|
||||
m_groupPreviewNum = 5;
|
||||
m_openExpanded = false;
|
||||
m_showInFullscreen = false;
|
||||
m_sizes = new NotifsSizes(this);
|
||||
wireSignals();
|
||||
}
|
||||
Reference in New Issue
Block a user