summaryrefslogtreecommitdiff
path: root/src/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/theme.c')
-rw-r--r--src/theme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/theme.c b/src/theme.c
index 1c21453..2367fe3 100644
--- a/src/theme.c
+++ b/src/theme.c
@@ -830,7 +830,7 @@ theme_check_init (unsigned int major_ver,
unsigned int minor_ver,
unsigned int micro_ver)
{
- return major_ver == THEME_MAJOR_VERSION &&
- minor_ver == THEME_MINOR_VERSION &&
- micro_ver == THEME_MICRO_VERSION;
+ return major_ver == 0
+ && (minor_ver > 3
+ || (minor_ver == 3 && micro_ver >= 2));
}