config moved to c++ plugin, removed old qml + fileview implementation
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
#include "Sidebar.hpp"
|
||||
|
||||
SidebarSizes::SidebarSizes(QObject *parent) : ConfigSection(parent) {
|
||||
m_width = 520;
|
||||
wireSignals();
|
||||
}
|
||||
|
||||
Sidebar::Sidebar(QObject *parent) : ConfigSection(parent) {
|
||||
m_dragThreshold = 30;
|
||||
m_enabled = true;
|
||||
m_sizes = new SidebarSizes(this);
|
||||
wireSignals();
|
||||
}
|
||||
Reference in New Issue
Block a user