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
+14
View File
@@ -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();
}