ignore system scaling factor if it's not a positive rational

This commit is contained in:
Matthew Flatt 2015-08-04 15:45:30 -06:00
parent 54de09f30e
commit bf79fb427c

View File

@ -43,4 +43,6 @@
(g_variant_get_double
(g_settings_get_value gs "text-scaling-factor"))))
(g_object_unref gs)
v))
(and (rational? v)
(positive? v)
v)))