diff options
author | Drew DeVault <[email protected]> | 2018-05-13 10:11:10 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-05-13 10:11:10 -0400 |
commit | 61aa0937a75d23c0f2a00a8cea52c08bf69164dd (patch) | |
tree | 5f2e7817313b657431870862d4059b62bcd2e396 /sway/config.c | |
parent | 0c96d757d0d5d1762390dd119cbe344e8781c19f (diff) | |
parent | f40049b5cd8d0274a62399cbdd1f8fd0e7668be3 (diff) |
Merge pull request #1824 from snaggen/idle
DPMS and lock handling
Diffstat (limited to 'sway/config.c')
-rw-r--r-- | sway/config.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sway/config.c b/sway/config.c index 270c1d86..34c8a280 100644 --- a/sway/config.c +++ b/sway/config.c @@ -165,6 +165,7 @@ static void config_defaults(struct sway_config *config) { config->floating_mod = 0; config->dragging_key = BTN_LEFT; config->resizing_key = BTN_RIGHT; + if (!(config->floating_scroll_up_cmd = strdup(""))) goto cleanup; if (!(config->floating_scroll_down_cmd = strdup(""))) goto cleanup; if (!(config->floating_scroll_left_cmd = strdup(""))) goto cleanup; |