eden/src/qt_common/backendsettings.h
Caio Oliveira 2bdcb0472e
Some checks failed
eden-license / license-header (pull_request) Failing after 24s
[WIP DO NOT MERGE] qt: move backend setting to its own config
* this is totally a mess but builds, I just need to format and check everything
  im late to go work!
* prevents error on migration

Signed-off-by: Caio Oliveira <caiooliveirafarias0@gmail.com>
2025-09-27 12:21:08 -03:00

21 lines
312 B
C++

#pragma once
#include "common/settings.h"
namespace BackEndSettings {
using namespace Settings;
struct Values {
SwitchableSetting<bool> backend_force_x11;
Setting<bool> backend_hide_warning_popup;
Values();
};
extern Values values;
void Save();
void Restore();
} // namespace BackEndSettings