diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-09-03 05:44:28 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-09-03 05:44:28 +0000 |
| commit | 5a44164be9c7171f7775f7a3f88fe4a1f93d9a1b (patch) | |
| tree | a8fd738ec014e19c6836fb187826c5d3379bb034 | |
| parent | 83c213143e8a227c70b8fbf9337d5fead15784d8 (diff) | |
make the default screen-edge resistance 20 (double what it is for windows)
| -rw-r--r-- | data/rc.xml | 2 | ||||
| -rw-r--r-- | openbox/config.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/rc.xml b/data/rc.xml index c3737d30..f919febe 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -7,7 +7,7 @@ <resistance> <strength>10</strength> - <screen_edge_strength>10</screen_edge_strength> + <screen_edge_strength>20</screen_edge_strength> </resistance> <placement> diff --git a/openbox/config.c b/openbox/config.c index 21f03d3e..7e3b10a4 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -398,7 +398,7 @@ void config_startup(ObParseInst *i) parse_register(i, "mouse", parse_mouse, NULL); config_resist_win = 10; - config_resist_edge = 10; + config_resist_edge = 20; parse_register(i, "resistance", parse_resistance, NULL); |
