summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/ui/theme.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/ui/theme.c b/src/ui/theme.c
index d46d5997..5cf5f3b8 100644
--- a/src/ui/theme.c
+++ b/src/ui/theme.c
@@ -328,8 +328,16 @@ meta_theme_get_title_scale (MetaTheme *theme,
MetaFrameType type,
MetaFrameFlags flags)
{
- /* stub FIXME */
- /* stub: return sensible default value */
+ /*
+ * In v2 themes, the theme authors had the option of
+ * asking for various sizes to scale the text by:
+ *
+ * xx-small,x-small,small,medium,large,x-large,xx-large
+ *
+ * We don't currently support any of these, and we
+ * pretend that it's always given as "medium".
+ */
+
return 1.0;
}