default floating_mod

This commit is contained in:
taiyu 2015-08-28 14:45:40 -07:00
parent da2d992563
commit e0d5486957
1 changed files with 2 additions and 0 deletions

View File

@ -27,6 +27,7 @@ void config_defaults(struct sway_config *config) {
config->current_mode->name = NULL;
config->current_mode->bindings = create_list();
list_add(config->modes, config->current_mode);
config->floating_mod = 0;
config->default_layout = L_NONE;
config->default_orientation = L_NONE;
// Flags
@ -35,6 +36,7 @@ void config_defaults(struct sway_config *config) {
config->reloading = false;
config->active = false;
config->failed = false;
config->gaps_inner = 0;
config->gaps_outer = 0;
}