mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-11-18 06:59:53 -05:00
rollback: remove force_tile_state option
Since the non-tiled state can cause the size of some Windows to be out of sync with the synthesizer's expectations, all Windows are set to the tiled state by default again
This commit is contained in:
parent
fd3d18921d
commit
43798176f3
3 changed files with 5 additions and 33 deletions
|
|
@ -72,7 +72,6 @@ typedef struct {
|
|||
int no_force_center;
|
||||
int isterm;
|
||||
int allow_csd;
|
||||
int force_tile_state;
|
||||
int noswallow;
|
||||
float focused_opacity;
|
||||
float unfocused_opacity;
|
||||
|
|
@ -1484,7 +1483,6 @@ void parse_option(Config *config, char *key, char *value) {
|
|||
rule->isnosizehint = -1;
|
||||
rule->isterm = -1;
|
||||
rule->allow_csd = -1;
|
||||
rule->force_tile_state = -1;
|
||||
rule->noswallow = -1;
|
||||
rule->nofadein = -1;
|
||||
rule->nofadeout = -1;
|
||||
|
|
@ -1578,8 +1576,6 @@ void parse_option(Config *config, char *key, char *value) {
|
|||
rule->isterm = atoi(val);
|
||||
} else if (strcmp(key, "allow_csd") == 0) {
|
||||
rule->allow_csd = atoi(val);
|
||||
} else if (strcmp(key, "force_tile_state") == 0) {
|
||||
rule->force_tile_state = atoi(val);
|
||||
} else if (strcmp(key, "noswallow") == 0) {
|
||||
rule->noswallow = atoi(val);
|
||||
} else if (strcmp(key, "scroller_proportion") == 0) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue