commit 94ad169eb6c2806c0f9a119b2c726d0f16cb56b0
parent 35603b2341e2e96f3f6cb53092f53bafcfe916d9
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 18 Apr 2017 17:57:07 -0400
Merge pull request #1181 from wasamasa/bugfix-initial-scratchpad-size
Use i3's dimensions for initial scratchpad views
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/commands/scratchpad.c b/sway/commands/scratchpad.c
@@ -16,8 +16,8 @@ static swayc_t *fetch_view_from_scratchpad() {
wlc_view_set_output(view->handle, swayc_active_output()->handle);
}
if (!view->is_floating) {
- view->width = swayc_active_workspace()->width/2;
- view->height = swayc_active_workspace()->height/2;
+ view->width = swayc_active_workspace()->width * 0.5;
+ view->height = swayc_active_workspace()->height * 0.75;
view->x = (swayc_active_workspace()->width - view->width)/2;
view->y = (swayc_active_workspace()->height - view->height)/2;
}