diff options
author | Brian Ashworth <[email protected]> | 2018-10-08 15:28:09 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2018-10-08 15:28:09 -0400 |
commit | a999269e1cf8eeb423547a0c8ab3420f27628168 (patch) | |
tree | 3572a9e1bff58710c22638d85ce1206af3999d94 /sway/config.c | |
parent | a03955f9368cfa1c190e4194eed8437dce22eb77 (diff) | |
parent | 3f328b62768d7801f0544b31ab8f9dde3014fd1d (diff) |
Merge pull request #2782 from RyanDwyer/popup-during-fullscreen
Implement popup_during_fullscreen
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 e95c7b35..a50e9144 100644 --- a/sway/config.c +++ b/sway/config.c @@ -214,6 +214,7 @@ static void config_defaults(struct sway_config *config) { if (!(config->font = strdup("monospace 10"))) goto cleanup; config->font_height = 17; // height of monospace 10 config->urgent_timeout = 500; + config->popup_during_fullscreen = POPUP_SMART; // floating view config->floating_maximum_width = 0; |