aboutsummaryrefslogtreecommitdiff
path: root/libi3/dpi.c
diff options
context:
space:
mode:
Diffstat (limited to 'libi3/dpi.c')
-rw-r--r--libi3/dpi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/libi3/dpi.c b/libi3/dpi.c
index dec38bc8..27281562 100644
--- a/libi3/dpi.c
+++ b/libi3/dpi.c
@@ -95,7 +95,8 @@ int logical_px(const int logical) {
* systems to 96 dpi in order to get the behavior they expect/are used to,
* but since we can easily detect this case in code, let’s do it for them.
*/
- if ((dpi / 96.0) < 1.25)
+ if ((dpi / 96.0) < 1.25) {
return logical;
+ }
return ceil((dpi / 96.0) * logical);
}