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
+17
View File
@@ -0,0 +1,17 @@
#include "Osd.hpp"
OsdSizes::OsdSizes(QObject *parent) : ConfigSection(parent) {
m_sliderHeight = 150;
m_sliderWidth = 30;
wireSignals();
}
Osd::Osd(QObject *parent) : ConfigSection(parent) {
m_allMonBrightness = true;
m_enableBrightness = true;
m_enableMicrophone = true;
m_enabled = true;
m_hideDelay = 3000;
m_sizes = new OsdSizes(this);
wireSignals();
}