diff options
author | Drew DeVault <sir@cmpwn.com> | 2016-05-08 10:27:40 -0700 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2016-05-08 10:27:40 -0700 |
commit | db0e1d6bc138100d351a41191f8e631d0b2b941e (patch) | |
tree | ed2cbb25cb60138bac65178e50ab9cf717dad787 /include | |
parent | 6abdc0755945a982638ce2341d2ed1f96a6c5e4e (diff) | |
parent | 0c495eecde82c3b7a2827c713badfd13536f5507 (diff) | |
download | sway-db0e1d6bc138100d351a41191f8e631d0b2b941e.tar.xz |
Merge pull request #645 from Hummer12007/floating_scroll
Implement configurable floating scroll behavior
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/config.h b/include/config.h index 8e5e33c3..e15ba311 100644 --- a/include/config.h +++ b/include/config.h @@ -166,13 +166,6 @@ enum edge_border_types { E_BOTH /**< hide vertical and horizontal edge borders */ }; -enum floating_scroll_behavior { - FSB_GAPS_OUTER, /**< Adjust outer gaps */ - FSB_GAPS_INNER /**< Adjust inner gaps */ - // Note: in the future I expect to see more things you can do with the scroll - // wheel than maniuplating gaps -}; - /** * The configuration struct. The result of loading a config file. */ @@ -191,7 +184,8 @@ struct sway_config { uint32_t floating_mod; uint32_t dragging_key; uint32_t resizing_key; - enum floating_scroll_behavior floating_scroll; // TODO: command to set this + char *floating_scroll_up_cmd; + char *floating_scroll_down_cmd; enum swayc_layouts default_orientation; enum swayc_layouts default_layout; char *font; |