diff options
author | Dominique Martinet <asmadeus@codewreck.org> | 2018-02-10 09:20:24 +0100 |
---|---|---|
committer | Dominique Martinet <asmadeus@codewreck.org> | 2018-02-10 09:28:54 +0100 |
commit | 5aee2afc7b8b5e63d2f72b91f41930a0fb260a28 (patch) | |
tree | 72accf481b631a8b0290d89c1ce2e870b531f3ee /rootston/config.c | |
parent | 34489dca16ef9e7fd05c161b8b4f2fd5ce5e4ef0 (diff) |
rootston: allow scale < 1 as well
Since we support fractional scale, having scale=0.5 can make sense
(and, as far as I can tell, works fine)
Diffstat (limited to 'rootston/config.c')
-rw-r--r-- | rootston/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rootston/config.c b/rootston/config.c index 31bde2b0..26cbd12d 100644 --- a/rootston/config.c +++ b/rootston/config.c @@ -281,7 +281,7 @@ static int config_ini_handler(void *user, const char *section, const char *name, oc->y = strtol(value, NULL, 10); } else if (strcmp(name, "scale") == 0) { oc->scale = strtof(value, NULL); - assert(oc->scale >= 1); + assert(oc->scale > 0); } else if (strcmp(name, "rotate") == 0) { if (strcmp(value, "normal") == 0) { oc->transform = WL_OUTPUT_TRANSFORM_NORMAL; |