Move magnfier size into XML

This commit is contained in:
Simon Long 2024-05-02 18:08:24 +01:00
parent 483a92368e
commit f76dffa01a
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;
@ -143,6 +140,11 @@ struct rcxml {
/* Menu */
unsigned int menu_ignore_button_release_period;
/* magnifier */
bool magnify;
int mag_scale;
int mag_size;
};
extern struct rcxml rc;