1
0
Fork 0
forked from wry/wry

config: allow disabling color-management

This commit is contained in:
Julian Orth 2025-02-26 16:16:38 +01:00
parent c66f5798b7
commit 248eb324a5
24 changed files with 388 additions and 9 deletions

View file

@ -11,7 +11,10 @@ use {
crate::{
config::{
context::Context,
parsers::config::{ConfigParser, ConfigParserError},
parsers::{
color_management::ColorManagement,
config::{ConfigParser, ConfigParserError},
},
},
toml::{self},
},
@ -358,6 +361,7 @@ pub struct Config {
pub libei: Libei,
pub ui_drag: UiDrag,
pub xwayland: Option<Xwayland>,
pub color_management: Option<ColorManagement>,
}
#[derive(Debug, Error)]