mirror of
https://git.outfoxxed.me/quickshell/quickshell.git
synced 2025-11-04 19:04:56 +11:00
11 lines
219 B
C++
11 lines
219 B
C++
#include "shell.hpp"
|
|
|
|
#include <qtmetamacros.h>
|
|
|
|
void ShellRoot::setConfig(ShellConfig config) {
|
|
this->mConfig = config;
|
|
|
|
emit this->configChanged();
|
|
}
|
|
|
|
ShellConfig ShellRoot::config() const { return this->mConfig; }
|