aboutsummaryrefslogtreecommitdiffstats
path: root/sway/commands.c
diff options
context:
space:
mode:
authorLibravatar Drew DeVault <ddevault@linode.com>2016-07-18 16:21:45 -0400
committerLibravatar Drew DeVault <ddevault@linode.com>2016-07-28 14:36:49 -0400
commit11e7ca044c61f0bcce95a90b50814f780f769f21 (patch)
tree70a4b6d6e476471a7f290f8c1278b01b275358be /sway/commands.c
parentInitial pass on HiDPI support (diff)
downloadsway-11e7ca044c61f0bcce95a90b50814f780f769f21.tar.gz
sway-11e7ca044c61f0bcce95a90b50814f780f769f21.tar.zst
sway-11e7ca044c61f0bcce95a90b50814f780f769f21.zip
Update hidpi support to latest wlc API
Diffstat (limited to 'sway/commands.c')
-rw-r--r--sway/commands.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sway/commands.c b/sway/commands.c
index 89d4337c..053b5792 100644
--- a/sway/commands.c
+++ b/sway/commands.c
@@ -1706,10 +1706,10 @@ static struct cmd_results *cmd_output(int argc, char **argv) {
1706 list_add(config->output_configs, output); 1706 list_add(config->output_configs, output);
1707 } 1707 }
1708 1708
1709 sway_log(L_DEBUG, "Config stored for output %s (enabled:%d) (%d x %d @ %d, %d) (bg %s %s)", 1709 sway_log(L_DEBUG, "Config stored for output %s (enabled:%d) (%d x %d @ %d, %d scale %d) (bg %s %s)",
1710 output->name, output->enabled, output->width, 1710 output->name, output->enabled, output->width,
1711 output->height, output->x, output->y, output->background, 1711 output->height, output->x, output->y, output->scale,
1712 output->background_option); 1712 output->background, output->background_option);
1713 1713
1714 if (output->name) { 1714 if (output->name) {
1715 // Try to find the output container and apply configuration now. If 1715 // Try to find the output container and apply configuration now. If