diff options
author | Mykyta Holubakha <hilobakho@gmail.com> | 2016-05-08 17:17:35 +0300 |
---|---|---|
committer | Mykyta Holubakha <hilobakho@gmail.com> | 2016-05-08 17:17:35 +0300 |
commit | 0c495eecde82c3b7a2827c713badfd13536f5507 (patch) | |
tree | ed2cbb25cb60138bac65178e50ab9cf717dad787 /include/config.h | |
parent | 394a5d36cb5ac7f1d711fb4d02275ff4523b62bf (diff) |
Remove FSB_GAPS_INNER and FSB_GAPS_OUTER
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/include/config.h b/include/config.h index 6bd09151..e15ba311 100644 --- a/include/config.h +++ b/include/config.h @@ -166,12 +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 */ - FSB_CUSTOM /**< Perform a user-defined action */ -}; - /** * The configuration struct. The result of loading a config file. */ @@ -190,9 +184,8 @@ struct sway_config { uint32_t floating_mod; uint32_t dragging_key; uint32_t resizing_key; - enum floating_scroll_behavior floating_scroll; - char *fsb_up; - char *fsb_down; + char *floating_scroll_up_cmd; + char *floating_scroll_down_cmd; enum swayc_layouts default_orientation; enum swayc_layouts default_layout; char *font; |