Move magnfier size into XML

This commit is contained in:
Simon Long 2024-05-02 18:08:24 +01:00
parent fe67087cf6
commit 165b955cd9
3 changed files with 22 additions and 19 deletions

View file

@ -60,9 +60,6 @@ struct rcxml {
bool focus_follow_mouse_requires_movement;
bool raise_on_focus;
bool magnify;
int magnification;
/* theme */
char *theme_name;
int corner_radius;
@ -140,6 +137,11 @@ struct rcxml {
} window_switcher;
struct wl_list window_rules; /* struct window_rule.link */
/* magnifier */
bool magnify;
int mag_scale;
int mag_size;
};
extern struct rcxml rc;