config moved to c++ plugin, removed old qml + fileview implementation
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
#include "Colors.hpp"
|
||||
|
||||
Presets::Presets(QObject *parent) : ConfigSection(parent) {
|
||||
m_accent = QString();
|
||||
m_name = QStringLiteral("Catppuccin");
|
||||
m_variant = QStringLiteral("latte");
|
||||
wireSignals();
|
||||
}
|
||||
|
||||
Colors::Colors(QObject *parent) : ConfigSection(parent) {
|
||||
m_presets = new Presets(this);
|
||||
m_schemeType = QStringLiteral("fidelity");
|
||||
wireSignals();
|
||||
}
|
||||
Reference in New Issue
Block a user