summaryrefslogtreecommitdiff
path: root/endless/eoswindow.c
diff options
context:
space:
mode:
authorMatt Watson <mattdangerw@gmail.com>2016-04-14 11:49:09 -0700
committerMatt Watson <mattdangerw@gmail.com>2016-04-21 15:40:25 -0700
commite1fb6e69f986b20203180406f15774deba163d30 (patch)
treefeffb46b172ea9579b8be55a22cf13d0a55a00c3 /endless/eoswindow.c
parent914b9ef7cc1a0657a29e401a77a97748a04f62ba (diff)
window: bump font scaling defaults by 4/3
Pixel font-sizes in css now show up 75% smaller. These properties are gints so we will round when necessary. https://phabricator.endlessm.com/T11000
Diffstat (limited to 'endless/eoswindow.c')
-rw-r--r--endless/eoswindow.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/endless/eoswindow.c b/endless/eoswindow.c
index f05eff4..5be4d23 100644
--- a/endless/eoswindow.c
+++ b/endless/eoswindow.c
@@ -585,7 +585,7 @@ eos_window_class_init (EosWindowClass *klass)
"This is the default font-size by which font-size for children widgets will scale",
1,
G_MAXINT,
- 12,
+ 16,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
/**
@@ -611,7 +611,7 @@ eos_window_class_init (EosWindowClass *klass)
"This is the minimum font-size under which font-size for children widgets won't scale",
1,
G_MAXINT,
- 8,
+ 10,
G_PARAM_READWRITE | G_PARAM_CONSTRUCT | G_PARAM_STATIC_STRINGS);
/**
@@ -624,7 +624,7 @@ eos_window_class_init (EosWindowClass *klass)
"This is the calculated font-size by which children widgets scale",
1,
G_MAXDOUBLE,
- 12,
+ 16,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
g_object_class_install_properties (object_class, NPROPS, eos_window_props);